boot2

Playing with the boostrap
git clone https://git.ryansepassi.com/git/boot2.git
Log | Files | Refs | README

ctype.h (222B)


      1 #ifndef _CTYPE_H
      2 #define _CTYPE_H
      3 int isalnum(int);
      4 int isalpha(int);
      5 int isdigit(int);
      6 int islower(int);
      7 int isprint(int);
      8 int isspace(int);
      9 int isupper(int);
     10 int isxdigit(int);
     11 int tolower(int);
     12 int toupper(int);
     13 #endif