Details |
Last modification |
View Log
| RSS feed
Rev |
Author |
Line No. |
Line |
2 |
7u83 |
1 |
#ifndef __HACKED_CTYPE_INCLUDED
|
|
|
2 |
#define __HACKED_CTYPE_INCLUDED
|
|
|
3 |
|
|
|
4 |
#include_next <ctype.h>
|
|
|
5 |
|
|
|
6 |
#ifndef _toupper
|
|
|
7 |
#define _toupper( X ) ( ( X ) + ( 'A' - 'a' ) )
|
|
|
8 |
#define _tolower( X ) ( ( X ) - ( 'A' - 'a' ) )
|
|
|
9 |
#endif
|
|
|
10 |
|
|
|
11 |
#endif
|