IMPORT_C char* setlocale(int category, const char *locale);
Description
The facility defined to condition the execution environment for international collating and formatting information.
Parameters
int category |
Category
|
const char *locale |
Locale
|
|
Return value
char * |
either a pointer to a string naming the locale currently in effect or, if the locale request cannot be honored NULL.
|
|
IMPORT_C struct lconv* localeconv(void);
Description
Reports on the settings of the current locale.
Return value
struct lconv lconv * |
a pointer to a structure of type lconv, which describes the formatting and collating conventions in effect
|
|