Defined in header <locale.h> | ||
---|---|---|
char* setlocale( int category, const char* locale); |
The setlocale
function installs the specified system locale or its portion as the new C locale. The modifications remain in effect and influences the execution of all locale-sensitive C library functions until the next call to setlocale
. If locale
is a null pointer, setlocale
queries the current C locale without modifying it.
Parameters
category | - | locale category identifier, one of the LC_xxx macros. May be null. |
locale | - | system-specific locale identifier. Can be "" for the user-preferred locale or "C" for the minimal locale |
Return value
pointer to a narrow null-terminated string identifying the C locale after applying the changes, if any, or null pointer on failure.
A copy of the returned string along with the category used in this call to setlocale
may be used later in the program to restore the locale back to the state at the end of this call.
Notes
During program startup, the equivalent of setlocale(LC_ALL, "C");
is executed before any user code is run.
Although the return type is char*
, modifying the pointed-to characters is undefined behavior.
Because setlocale
modifies global state which affects execution of locale-dependent functions, it is undefined behavior to call it from one thread, while another thread is executing any of the following functions: fprintf
, isprint
, iswdigit
, localeconv
, tolower
, fscanf
, ispunct
, iswgraph
, mblen
, toupper
, isalnum
, isspace
, iswlower
, mbstowcs
, towlower
, isalpha
, isupper
, iswprint
, mbtowc
, towupper
, isblank
, iswalnum
, iswpunct
, setlocale
, wcscoll
, iscntrl
, iswalpha
, iswspace
, strcoll
, wcstod
, isdigit
, iswblank
, iswupper
, strerror
, wcstombs
, isgraph
, iswcntrl
, iswxdigit
, strtod
, wcsxfrm
, islower
, iswctype
, isxdigit
.
POSIX also defines a locale named "POSIX", which is always accessible and is exactly equivalent to the default minimal "C" locale.
POSIX also specifies that the returned pointer, not just the contents of the pointed-to string, may be invalidated by subsequent calls to setlocale.
Example
#include <stdio.h> #include <locale.h> #include <time.h> #include <wchar.h> int main(void) { // the C locale will be UTF-8 enabled English; // decimal dot will be German // date and time formatting will be Japanese setlocale(LC_ALL, "en_US.UTF-8"); setlocale(LC_NUMERIC, "de_DE"); setlocale(LC_TIME, "ja_JP"); 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); }
Possible output:
Number: 3,14 Date: 木曜日 2014年11月06日 09時58分56秒
References
- C11 standard (ISO/IEC 9899:2011):
- 7.11.1.1 The setlocale function (p: 224-225)
- C99 standard (ISO/IEC 9899:1999):
- 7.11.1.1 The setlocale function (p: 205-206)
- C89/C90 standard (ISO/IEC 9899:1990):
- 4.4.1.1 The setlocale function
See also
locale categories for setlocale (macro constant) | |
C++ documentation for setlocale |
Please login to continue.