8 lines
135 B
C
8 lines
135 B
C
#ifndef _BITS_CTYPE_H
|
|
#define _BITS_CTYPE_H
|
|
|
|
#define _tolower(c) tolower(c)
|
|
#define _toupper(c) toupper(c)
|
|
|
|
#endif /* _BITS_CTYPE_H */
|