2023-04-23 21:38:36 +03:00

9 lines
116 B
C

#ifndef _CTYPE_H
#define _CTYPE_H
int tolower(int c);
int toupper(int c);
int isspace(int c);
#endif // !_CTYPE_H