| OLD | NEW |
| 1 #ifndef _LANGINFO_H | 1 #ifndef _LANGINFO_H |
| 2 #define _LANGINFO_H | 2 #define _LANGINFO_H |
| 3 | 3 |
| 4 #ifdef __cplusplus | 4 #ifdef __cplusplus |
| 5 extern "C" { | 5 extern "C" { |
| 6 #endif | 6 #endif |
| 7 | 7 |
| 8 #include <features.h> | 8 #include <features.h> |
| 9 #include <nl_types.h> | 9 #include <nl_types.h> |
| 10 | 10 |
| (...skipping 64 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 75 #define RADIXCHAR 0x10000 | 75 #define RADIXCHAR 0x10000 |
| 76 #define THOUSEP 0x10001 | 76 #define THOUSEP 0x10001 |
| 77 #define YESEXPR 0x50000 | 77 #define YESEXPR 0x50000 |
| 78 #define NOEXPR 0x50001 | 78 #define NOEXPR 0x50001 |
| 79 | 79 |
| 80 #if defined(_GNU_SOURCE) || defined(_BSD_SOURCE) | 80 #if defined(_GNU_SOURCE) || defined(_BSD_SOURCE) |
| 81 #define YESSTR 0x50002 | 81 #define YESSTR 0x50002 |
| 82 #define NOSTR 0x50003 | 82 #define NOSTR 0x50003 |
| 83 #endif | 83 #endif |
| 84 | 84 |
| 85 char *nl_langinfo(nl_item); | 85 char* nl_langinfo(nl_item); |
| 86 char *nl_langinfo_l(nl_item, locale_t); | 86 char* nl_langinfo_l(nl_item, locale_t); |
| 87 | 87 |
| 88 #ifdef __cplusplus | 88 #ifdef __cplusplus |
| 89 } | 89 } |
| 90 #endif | 90 #endif |
| 91 | 91 |
| 92 #endif | 92 #endif |
| OLD | NEW |