luajitos

Unnamed repository; edit this file 'description' to name the repository.
Log | Files | Refs

ctype.h (305B)


      1 #ifndef _CTYPE_H
      2 #define _CTYPE_H
      3 
      4 int isalnum(int c);
      5 int isalpha(int c);
      6 int isdigit(int c);
      7 int isxdigit(int c);
      8 int islower(int c);
      9 int isupper(int c);
     10 int isspace(int c);
     11 int isprint(int c);
     12 int isgraph(int c);
     13 int iscntrl(int c);
     14 int ispunct(int c);
     15 
     16 int tolower(int c);
     17 int toupper(int c);
     18 
     19 #endif