]> git.sur5r.net Git - openldap/blob - ac/ctype.h
Do not require ac/string.h for lber_pvt.h
[openldap] / ac / ctype.h
1 /* Generic ctype.h */
2
3 #ifndef _AC_CTYPE_H
4 #define _AC_CTYPE_H
5
6 #include <ctype.h>
7
8 #ifdef C_UPPER_LOWER
9 # define TOUPPER(c)     (islower(c) ? toupper(c) : (c))
10 # define TOLOWER(c)     (islower(c) ? toupper(c) : (c))
11 #else
12 # define TOUPPER(c)     toupper(c)
13 # define TOLOWER(c)     tolower(c)
14 #endif
15
16 #endif /* _AC_CTYPE_H */