00001 /* 00002 * ctype.h 00003 */ 00029 /*--------------------------------------------------------------- 00030 * HISTORY 00031 * 4-Sep-2006 Graeme McKerrell 00032 * Initial Version 00033 *--------------------------------------------------------------- 00034 * Copyright (C) 2006 Newport Networks. All Rights Reserved. 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 /* _lub_ctype_h */ 00136