c_ctype.c 359 B

12345678910111213141516
  1. #include "c_ctype.h"
  2. #include "c_types.h"
  3. // int isalnum(int c){}
  4. // int isalpha(int c){}
  5. // int iscntrl(int c){}
  6. // int isdigit(int c){}
  7. // // int isgraph(int c){}
  8. // int islower(int c){}
  9. // int isprint(int c){}
  10. // int ispunct(int c){}
  11. // int isspace(int c){}
  12. // int isupper(int c){}
  13. // int isxdigit(int c){}
  14. // int tolower(int c){}
  15. // int toupper(int c){}