ctype.h
00001
00002
00003
00029
00030
00031
00032
00033
00034
00035
00036 #ifndef _lub_ctype_h
00037 #define _lub_ctype_h
00038
00039 #include "lub/types.h"
00040
00041 #include "lub/c_decl.h"
00042 _BEGIN_C_DECL
00043
00058 bool_t
00059 lub_ctype_isdigit(
00063 char c
00064 );
00079 bool_t
00080 lub_ctype_isspace(
00084 char c
00085 );
00102 char
00103 lub_ctype_tolower(
00107 char c
00108 );
00125 char
00126 lub_ctype_toupper(
00130 char c
00131 );
00132
00133 _END_C_DECL
00134
00135 #endif
00136