]> git.sur5r.net Git - openldap/blob - include/ac/ctype.h
Update slapd to use lutil_passwd() for both user and root passwords.
[openldap] / include / 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 */