Defined in header <locale.h> | ||||
---|---|---|---|---|
| ||||
| ||||
| ||||
| ||||
| ||||
|
Each of the above macro constants expand to integer constant expressions with distinct values that are suitable for use as the first argument of setlocale
.
Constant | Explanation |
---|---|
LC_ALL | selects the entire C locale |
LC_COLLATE | selects the collation category of the C locale |
LC_CTYPE | selects the character classification category of the C locale |
LC_MONETARY | selects the monetary formatting category of the C locale |
LC_NUMERIC | selects the numeric formatting category of the C locale |
LC_TIME | selects the time formatting category of the C locale |
Additional macro constants, with names that begin with LC_
followed by at least one uppercase letter, may be defined in locale.h
. For example, the POSIX specification requires LC_MESSAGES (which controls, among other things, perror
and strerror
), and the GNU C library additionally defines LC_PAPER, LC_NAME, LC_ADDRESS, LC_TELEPHONE, LC_MEASUREMENT, and LC_IDENTIFICATION.
Example
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 | #include <stdio.h> #include <locale.h> #include <time.h> #include <wchar.h> int main( void ) { setlocale (LC_ALL, "en_US.UTF-8" ); // the C locale will be the UTF-8 enabled English setlocale (LC_NUMERIC, "de_DE" ); // decimal dot will be German setlocale (LC_TIME, "ja_JP" ); // date/time formatting will be Japanese wchar_t str[100]; time_t t = time (NULL); wcsftime(str, 100, L "%A %c" , localtime (&t)); wprintf(L "Number: %.2f\nDate: %Ls\n" , 3.14, str); } |
Output:
1 2 | Number: 3,14 Date: 月曜日 2011年12月19日 18時04分40秒 |
References
- C11 standard (ISO/IEC 9899:2011):
- 7.11/3 Localization <locale.h> (p: 224)
- C99 standard (ISO/IEC 9899:1999):
- 7.11/3 Localization <locale.h> (p: 205)
- C89/C90 standard (ISO/IEC 9899:1990):
- 4.4 LOCALIZATION <locale.h>
See also
gets and sets the current C locale (function) | |
C++ documentation for locale categories |
Please login to continue.