StupidOS/lib/c/ctype.h

8 lines
99 B
C

#ifndef CTYPE_H
# define CTYPE_H 1
int isalnum(int c);
int isdigit(int c);
#endif /* !CTYPE_H */