123456789101112131415161718192021222324252627282930313233343536373839404142434445464748 |
- #ifndef _XLOCALE_H
- #define _XLOCALE_H 1
- #if 0
- typedef struct __locale_struct
- {
-
- struct locale_data *__locales[13];
-
- const unsigned short int *__ctype_b;
- const int *__ctype_tolower;
- const int *__ctype_toupper;
-
- const char *__names[13];
- } *__locale_t;
- #else
- # include <bits/uClibc_locale.h>
- #endif
- typedef __locale_t locale_t;
- #endif
|