Use the setlocale function to set, change, or query some or all of the current program locale information specified by locale and category. locale refers to the locality (country/region and language) for which you can customize certain aspects of your program. Some locale-dependent categories include the formatting of dates and the display format for monetary values. If you set locale to the default string for a language with multiple forms supported on your computer, you should check the setlocale return code to see which language is in effect. For example, using "chinese" could result in a return value of chinese-simplified or chinese-traditional.
_wsetlocale is a wide-character version of setlocale; the locale argument and return value of _wsetlocale are wide-character strings. _wsetlocale and setlocale behave identically otherwise.
Generic-Text Routine Mappings
|
TCHAR.H routine
|
_UNICODE & _MBCS not defined
|
_MBCS defined
|
_UNICODE defined
|
| _tsetlocale | setlocale | setlocale | _wsetlocale |
The category argument specifies the parts of a program's locale information that are affected. The macros used for category and the parts of the program they affect are as follows:
- LC_ALL
-
All categories, as listed below.
- LC_COLLATE
-
The strcoll, _stricoll, wcscoll, _wcsicoll, strxfrm, _strncoll, _strnicoll, _wcsncoll, _wcsnicoll, and wcsxfrm functions.
- LC_CTYPE
-
The character-handling functions (except isdigit, isxdigit, mbstowcs, and mbtowc, which are unaffected).
- LC_MONETARY
-
Monetary-formatting information returned by the localeconv function.
- LC_NUMERIC
-
Decimal-point character for the formatted output routines (such as printf), for the data-conversion routines, and for the non-monetary formatting information returned by localeconv. In addition to the decimal-point character, LC_NUMERIC also sets the thousands separator and the grouping control string returned by localeconv.
- LC_TIME
-
The strftime and wcsftime functions.
This function validates the category parameter. If the category parameter is not one of the values given in the above table, the invalid parameter handler is invoked, as described in Parameter Validation. If execution is allowed to continue, the function sets errno to EINVAL and returns NULL.
The locale argument is a pointer to a string that specifies the name of the locale. If locale points to an empty string, the locale is the implementation-defined native environment. A value of C specifies the minimal ANSI conforming environment for C translation. The C locale assumes that all char data types are 1 byte and that their value is always less than 256.
At program startup, the equivalent of the following statement is executed:
setlocale( LC_ALL, "C" );
The locale argument takes the following form:
locale :: "lang[_country_region[.code_page]]"
| ".code_page"
| ""
| NULL
The set of available languages, country/region codes, and code pages includes all those supported by the Win32 NLS API except code pages that require more than two bytes per character, such as UTF-7 and UTF-8. If you provide a code page like UTF-7 or UTF-8, setlocale will fail, returning NULL. The set of language and country/region codes supported by setlocale is listed in Language and Country/Region Strings.
If locale is a null pointer, setlocale queries, rather than sets, the international environment and returns a pointer to the string associated with the specified category. The program's current locale setting is not changed. For example,
setlocale( LC_ALL, NULL );
returns the string associated with category.
The following examples pertain to the LC_ALL category. Either of the strings ".OCP" and ".ACP" can be used in place of a code page number to specify use of the user-default OEM code page and user-default ANSI code page, respectively.
- setlocale( LC_ALL, "" );
-
Sets the locale to the default, which is the user-default ANSI code page obtained from the operating system.
- setlocale( LC_ALL, ".OCP" );
-
Explicitly sets the locale to the current OEM code page obtained from the operating system.
- setlocale( LC_ALL, ".ACP" );
-
Sets the locale to the ANSI code page obtained from the operating system.
- setlocale( LC_ALL, "[lang_ctry]" );
-
Sets the locale to the language and country/region indicated, using the default code page obtained from the host operating system.
- setlocale( LC_ALL, "[lang_ctry.cp]" );
-
Sets the locale to the language, country/region, and code page indicated in the [lang_ctry.cp] string. You can use various combinations of language, country/region, and code page. For example:
setlocale( LC_ALL, "French_Canada.1252" );
// Set code page to French Canada ANSI default
setlocale( LC_ALL, "French_Canada.ACP" );
// Set code page to French Canada OEM default
setlocale( LC_ALL, "French_Canada.OCP" );
- setlocale( LC_ALL, "[lang]" );
-
Sets the locale to the country/region indicated, using the default country/region for the language specified, and the user-default ANSI code page for that country/region as obtained from the host operating system. For example, the following two calls to setlocale are functionally equivalent:
setlocale( LC_ALL, "English" );
setlocale( LC_ALL, "English_United States.1252" );
- setlocale( LC_ALL, "[.code_page]" );
-
Sets the code page to the value indicated, using the default country/region and language (as defined by the host operating system) for the specified code page.
The category must be either LC_ALL or LC_CTYPE to effect a change of code page. For example, if the default country/region and language of the host operating system are "United States" and "English," the following two calls to setlocale are functionally equivalent:
setlocale( LC_ALL, ".1252" );
setlocale( LC_ALL, "English_United States.1252");
For more information see the setlocale pragma in the Preprocessor Reference.
The function _configthreadlocale is used to control whether setlocale affects the locale of all threads in a program or only the locale of the calling thread.