12345678910111213141516171819202122232425262728293031323334353637383940 |
- #if !defined _LOCALE_H && !defined _LANGINFO_H
- # error "Never use <bits/locale.h> directly; include <locale.h> instead."
- #endif
- #ifndef _BITS_LOCALE_H
- #define _BITS_LOCALE_H 1
- #define __LC_CTYPE 0
- #define __LC_NUMERIC 1
- #define __LC_TIME 2
- #define __LC_COLLATE 3
- #define __LC_MONETARY 4
- #define __LC_MESSAGES 5
- #define __LC_ALL 6
- #define __LC_PAPER 7
- #define __LC_NAME 8
- #define __LC_ADDRESS 9
- #define __LC_TELEPHONE 10
- #define __LC_MEASUREMENT 11
- #define __LC_IDENTIFICATION 12
- #endif
|