clean up when finished.
This commit is contained in:
parent
98cd2746cf
commit
b4a659b6cf
21 changed files with 42 additions and 83 deletions
|
|
@ -3,6 +3,13 @@
|
|||
#include <bio.h>
|
||||
/* Macros for Rune support of ctype.h-like functions */
|
||||
|
||||
#undef isupper
|
||||
#undef islower
|
||||
#undef isalpha
|
||||
#undef isdigit
|
||||
#undef isalnum
|
||||
#undef isspace
|
||||
#undef tolower
|
||||
#define isupper(r) (L'A' <= (r) && (r) <= L'Z')
|
||||
#define islower(r) (L'a' <= (r) && (r) <= L'z')
|
||||
#define isalpha(r) (isupper(r) || islower(r))
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue