Subversion Repositories Kolibri OS

Compare Revisions

Regard whitespace Rev 9809 → Rev 9810

/programs/develop/ktcc/trunk/libc.obj/include/ctype.h
41,7 → 41,7
#define isascii(c) (!((c) & (~0x7f)))
#define toascii(c) ((c)&0x7f)
 
extern int _FUNC(tolower)(int c);
extern int _FUNC(toupper)(int c);
DLLAPI int tolower(int c);
DLLAPI int toupper(int c);
 
#endif