命名空间
变体
操作

标准库头文件 <locale.h>

来自 cppreference.cn
< c‎ | header

此头文件是本地化库的一部分。

目录

类型

格式化细节,由 localeconv 返回
(结构体)[编辑]

常量

实现定义的空指针常量
(宏常量) [编辑]
setlocale 的本地类别
(宏常量) [编辑]

函数

获取和设置当前的 C 本地环境
(函数) [编辑]
查询当前本地环境的数字和货币格式化细节
(函数) [编辑]

[编辑] 概要

// In the "C" locale, the members shall have the values specified in the comments:
struct lconv
{
    char* decimal_point;        // "."
    char* thousands_sep;        // ""
    char* grouping;             // ""
    char* mon_decimal_point;    // ""
    char* mon_thousands_sep;    // ""
    char* mon_grouping;         // ""
    char* positive_sign;        // ""
    char* negative_sign;        // ""
    char* currency_symbol;      // ""
    char  frac_digits;          // CHAR_MAX
    char  p_cs_precedes;        // CHAR_MAX
    char  n_cs_precedes;        // CHAR_MAX
    char  p_sep_by_space;       // CHAR_MAX
    char  n_sep_by_space;       // CHAR_MAX
    char  p_sign_posn;          // CHAR_MAX
    char  n_sign_posn;          // CHAR_MAX
    char* int_curr_symbol;      // ""
    char  int_frac_digits;      // CHAR_MAX
    char  int_p_cs_precedes;    // CHAR_MAX
    char  int_n_cs_precedes;    // CHAR_MAX
    char  int_p_sep_by_space;   // CHAR_MAX
    char  int_n_sep_by_space;   // CHAR_MAX
    char  int_p_sign_posn;      // CHAR_MAX
    char  int_n_sign_posn;      // CHAR_MAX
};
 
char* setlocale(int category, const char* locale);
lconv* localeconv();
 
#define NULL        /* see description */
#define LC_ALL      /* see description */
#define LC_COLLATE  /* see description */
#define LC_CTYPE    /* see description */
#define LC_MONETARY /* see description */
#define LC_NUMERIC  /* see description */
#define LC_TIME     /* see description */

[编辑] 注解