ctype.h 211 B

123456789101112131415161718
  1. #ifndef __GBLIBC_CTYPE_H_
  2. #define __GBLIBC_CTYPE_H_
  3. #ifdef __cplusplus
  4. extern "C" {
  5. #endif
  6. int islower(int c);
  7. int isupper(int c);
  8. int tolower(int c);
  9. int toupper(int c);
  10. #ifdef __cplusplus
  11. }
  12. #endif
  13. #endif