Advertisement
Guest User

Untitled

a guest
Jun 28th, 2017
53
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C 0.47 KB | None | 0 0
  1. char Lowercase(char ch);
  2. /* Lowercase of a char */
  3.  
  4. int NotNameChar(char ch);
  5. /* Judge if a char is a name char */
  6.  
  7. int IsNumber(char ch);
  8. /* Judge if a char is a number */
  9.  
  10. void OutTextxy(void *n, int x, int y, char *p, int color);
  11. /* Output a normal string that may include any character including Chinese */
  12.  
  13. void OpenHZK(void *n);
  14. /* Open the HZK file on the program loading progress */
  15.  
  16. void CloseHZK(void *n);
  17. /* Close the HZK file when closing program */
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement