ctype.h 537 B

1234567891011121314151617181920212223242526272829303132333435363738
  1. #pragma once
  2. #include <libc/sys/types.h>
  3. #pragma once
  4. #include <libc/__libc__.h>
  5. int isalnum(int c);
  6. int isalpha(int c);
  7. int isdigit(int c);
  8. int islower(int c);
  9. int isprint(int c);
  10. int isgraph(int c);
  11. int iscntrl(int c);
  12. int isgraph(int c);
  13. int ispunct(int c);
  14. int isspace(int c);
  15. int isupper(int c);
  16. int isxdigit(int c);
  17. int isascii(int c);
  18. int tolower(int c);
  19. int toupper(int c);
  20. #define _U 01
  21. #define _L 02
  22. #define _N 04
  23. #define _S 010
  24. #define _P 020
  25. #define _C 040
  26. #define _X 0100
  27. #define _B 0200
  28. extern char _ctype_[256];