Edit File by line
/home/barbar84/www/wp-conte.../plugins/sujqvwi/ExeBy/exe_root.../usr/include
File: langinfo.h
/* Access to locale-dependent parameters.
[0] Fix | Delete
Copyright (C) 1995-2018 Free Software Foundation, Inc.
[1] Fix | Delete
This file is part of the GNU C Library.
[2] Fix | Delete
[3] Fix | Delete
The GNU C Library is free software; you can redistribute it and/or
[4] Fix | Delete
modify it under the terms of the GNU Lesser General Public
[5] Fix | Delete
License as published by the Free Software Foundation; either
[6] Fix | Delete
version 2.1 of the License, or (at your option) any later version.
[7] Fix | Delete
[8] Fix | Delete
The GNU C Library is distributed in the hope that it will be useful,
[9] Fix | Delete
but WITHOUT ANY WARRANTY; without even the implied warranty of
[10] Fix | Delete
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
[11] Fix | Delete
Lesser General Public License for more details.
[12] Fix | Delete
[13] Fix | Delete
You should have received a copy of the GNU Lesser General Public
[14] Fix | Delete
License along with the GNU C Library; if not, see
[15] Fix | Delete
<http://www.gnu.org/licenses/>. */
[16] Fix | Delete
[17] Fix | Delete
#ifndef _LANGINFO_H
[18] Fix | Delete
#define _LANGINFO_H 1
[19] Fix | Delete
[20] Fix | Delete
/* Get the type definition. */
[21] Fix | Delete
#include <nl_types.h>
[22] Fix | Delete
[23] Fix | Delete
#include <bits/locale.h> /* Define the __LC_* category names. */
[24] Fix | Delete
[25] Fix | Delete
[26] Fix | Delete
__BEGIN_DECLS
[27] Fix | Delete
[28] Fix | Delete
/* Construct an `nl_item' value for `nl_langinfo' from a locale category
[29] Fix | Delete
(LC_*) and an item index within the category. Some code may depend on
[30] Fix | Delete
the item values within a category increasing monotonically with the
[31] Fix | Delete
indices. */
[32] Fix | Delete
#define _NL_ITEM(category, index) (((category) << 16) | (index))
[33] Fix | Delete
[34] Fix | Delete
/* Extract the category and item index from a constructed `nl_item' value. */
[35] Fix | Delete
#define _NL_ITEM_CATEGORY(item) ((int) (item) >> 16)
[36] Fix | Delete
#define _NL_ITEM_INDEX(item) ((int) (item) & 0xffff)
[37] Fix | Delete
[38] Fix | Delete
/* Enumeration of locale items that can be queried with `nl_langinfo'. */
[39] Fix | Delete
enum
[40] Fix | Delete
{
[41] Fix | Delete
/* LC_TIME category: date and time formatting. */
[42] Fix | Delete
[43] Fix | Delete
/* Abbreviated days of the week. */
[44] Fix | Delete
ABDAY_1 = _NL_ITEM (__LC_TIME, 0), /* Sun */
[45] Fix | Delete
#define ABDAY_1 ABDAY_1
[46] Fix | Delete
ABDAY_2,
[47] Fix | Delete
#define ABDAY_2 ABDAY_2
[48] Fix | Delete
ABDAY_3,
[49] Fix | Delete
#define ABDAY_3 ABDAY_3
[50] Fix | Delete
ABDAY_4,
[51] Fix | Delete
#define ABDAY_4 ABDAY_4
[52] Fix | Delete
ABDAY_5,
[53] Fix | Delete
#define ABDAY_5 ABDAY_5
[54] Fix | Delete
ABDAY_6,
[55] Fix | Delete
#define ABDAY_6 ABDAY_6
[56] Fix | Delete
ABDAY_7,
[57] Fix | Delete
#define ABDAY_7 ABDAY_7
[58] Fix | Delete
[59] Fix | Delete
/* Long-named days of the week. */
[60] Fix | Delete
DAY_1, /* Sunday */
[61] Fix | Delete
#define DAY_1 DAY_1
[62] Fix | Delete
DAY_2, /* Monday */
[63] Fix | Delete
#define DAY_2 DAY_2
[64] Fix | Delete
DAY_3, /* Tuesday */
[65] Fix | Delete
#define DAY_3 DAY_3
[66] Fix | Delete
DAY_4, /* Wednesday */
[67] Fix | Delete
#define DAY_4 DAY_4
[68] Fix | Delete
DAY_5, /* Thursday */
[69] Fix | Delete
#define DAY_5 DAY_5
[70] Fix | Delete
DAY_6, /* Friday */
[71] Fix | Delete
#define DAY_6 DAY_6
[72] Fix | Delete
DAY_7, /* Saturday */
[73] Fix | Delete
#define DAY_7 DAY_7
[74] Fix | Delete
[75] Fix | Delete
/* Abbreviated month names, in the grammatical form used when the month
[76] Fix | Delete
is a part of a complete date. */
[77] Fix | Delete
ABMON_1, /* Jan */
[78] Fix | Delete
#define ABMON_1 ABMON_1
[79] Fix | Delete
ABMON_2,
[80] Fix | Delete
#define ABMON_2 ABMON_2
[81] Fix | Delete
ABMON_3,
[82] Fix | Delete
#define ABMON_3 ABMON_3
[83] Fix | Delete
ABMON_4,
[84] Fix | Delete
#define ABMON_4 ABMON_4
[85] Fix | Delete
ABMON_5,
[86] Fix | Delete
#define ABMON_5 ABMON_5
[87] Fix | Delete
ABMON_6,
[88] Fix | Delete
#define ABMON_6 ABMON_6
[89] Fix | Delete
ABMON_7,
[90] Fix | Delete
#define ABMON_7 ABMON_7
[91] Fix | Delete
ABMON_8,
[92] Fix | Delete
#define ABMON_8 ABMON_8
[93] Fix | Delete
ABMON_9,
[94] Fix | Delete
#define ABMON_9 ABMON_9
[95] Fix | Delete
ABMON_10,
[96] Fix | Delete
#define ABMON_10 ABMON_10
[97] Fix | Delete
ABMON_11,
[98] Fix | Delete
#define ABMON_11 ABMON_11
[99] Fix | Delete
ABMON_12,
[100] Fix | Delete
#define ABMON_12 ABMON_12
[101] Fix | Delete
[102] Fix | Delete
/* Long month names, in the grammatical form used when the month
[103] Fix | Delete
is a part of a complete date. */
[104] Fix | Delete
MON_1, /* January */
[105] Fix | Delete
#define MON_1 MON_1
[106] Fix | Delete
MON_2,
[107] Fix | Delete
#define MON_2 MON_2
[108] Fix | Delete
MON_3,
[109] Fix | Delete
#define MON_3 MON_3
[110] Fix | Delete
MON_4,
[111] Fix | Delete
#define MON_4 MON_4
[112] Fix | Delete
MON_5,
[113] Fix | Delete
#define MON_5 MON_5
[114] Fix | Delete
MON_6,
[115] Fix | Delete
#define MON_6 MON_6
[116] Fix | Delete
MON_7,
[117] Fix | Delete
#define MON_7 MON_7
[118] Fix | Delete
MON_8,
[119] Fix | Delete
#define MON_8 MON_8
[120] Fix | Delete
MON_9,
[121] Fix | Delete
#define MON_9 MON_9
[122] Fix | Delete
MON_10,
[123] Fix | Delete
#define MON_10 MON_10
[124] Fix | Delete
MON_11,
[125] Fix | Delete
#define MON_11 MON_11
[126] Fix | Delete
MON_12,
[127] Fix | Delete
#define MON_12 MON_12
[128] Fix | Delete
[129] Fix | Delete
AM_STR, /* Ante meridiem string. */
[130] Fix | Delete
#define AM_STR AM_STR
[131] Fix | Delete
PM_STR, /* Post meridiem string. */
[132] Fix | Delete
#define PM_STR PM_STR
[133] Fix | Delete
[134] Fix | Delete
D_T_FMT, /* Date and time format for strftime. */
[135] Fix | Delete
#define D_T_FMT D_T_FMT
[136] Fix | Delete
D_FMT, /* Date format for strftime. */
[137] Fix | Delete
#define D_FMT D_FMT
[138] Fix | Delete
T_FMT, /* Time format for strftime. */
[139] Fix | Delete
#define T_FMT T_FMT
[140] Fix | Delete
T_FMT_AMPM, /* 12-hour time format for strftime. */
[141] Fix | Delete
#define T_FMT_AMPM T_FMT_AMPM
[142] Fix | Delete
[143] Fix | Delete
ERA, /* Alternate era. */
[144] Fix | Delete
#define ERA ERA
[145] Fix | Delete
__ERA_YEAR, /* Year in alternate era format. */
[146] Fix | Delete
#ifdef __USE_GNU
[147] Fix | Delete
# define ERA_YEAR __ERA_YEAR
[148] Fix | Delete
#endif
[149] Fix | Delete
ERA_D_FMT, /* Date in alternate era format. */
[150] Fix | Delete
#define ERA_D_FMT ERA_D_FMT
[151] Fix | Delete
ALT_DIGITS, /* Alternate symbols for digits. */
[152] Fix | Delete
#define ALT_DIGITS ALT_DIGITS
[153] Fix | Delete
ERA_D_T_FMT, /* Date and time in alternate era format. */
[154] Fix | Delete
#define ERA_D_T_FMT ERA_D_T_FMT
[155] Fix | Delete
ERA_T_FMT, /* Time in alternate era format. */
[156] Fix | Delete
#define ERA_T_FMT ERA_T_FMT
[157] Fix | Delete
[158] Fix | Delete
_NL_TIME_ERA_NUM_ENTRIES, /* Number entries in the era arrays. */
[159] Fix | Delete
_NL_TIME_ERA_ENTRIES, /* Structure with era entries in usable form.*/
[160] Fix | Delete
[161] Fix | Delete
_NL_WABDAY_1, /* Sun */
[162] Fix | Delete
_NL_WABDAY_2,
[163] Fix | Delete
_NL_WABDAY_3,
[164] Fix | Delete
_NL_WABDAY_4,
[165] Fix | Delete
_NL_WABDAY_5,
[166] Fix | Delete
_NL_WABDAY_6,
[167] Fix | Delete
_NL_WABDAY_7,
[168] Fix | Delete
[169] Fix | Delete
/* Long-named days of the week. */
[170] Fix | Delete
_NL_WDAY_1, /* Sunday */
[171] Fix | Delete
_NL_WDAY_2, /* Monday */
[172] Fix | Delete
_NL_WDAY_3, /* Tuesday */
[173] Fix | Delete
_NL_WDAY_4, /* Wednesday */
[174] Fix | Delete
_NL_WDAY_5, /* Thursday */
[175] Fix | Delete
_NL_WDAY_6, /* Friday */
[176] Fix | Delete
_NL_WDAY_7, /* Saturday */
[177] Fix | Delete
[178] Fix | Delete
/* Abbreviated month names, in the grammatical form used when the month
[179] Fix | Delete
is a part of a complete date. */
[180] Fix | Delete
_NL_WABMON_1, /* Jan */
[181] Fix | Delete
_NL_WABMON_2,
[182] Fix | Delete
_NL_WABMON_3,
[183] Fix | Delete
_NL_WABMON_4,
[184] Fix | Delete
_NL_WABMON_5,
[185] Fix | Delete
_NL_WABMON_6,
[186] Fix | Delete
_NL_WABMON_7,
[187] Fix | Delete
_NL_WABMON_8,
[188] Fix | Delete
_NL_WABMON_9,
[189] Fix | Delete
_NL_WABMON_10,
[190] Fix | Delete
_NL_WABMON_11,
[191] Fix | Delete
_NL_WABMON_12,
[192] Fix | Delete
[193] Fix | Delete
/* Long month names, in the grammatical form used when the month
[194] Fix | Delete
is a part of a complete date. */
[195] Fix | Delete
_NL_WMON_1, /* January */
[196] Fix | Delete
_NL_WMON_2,
[197] Fix | Delete
_NL_WMON_3,
[198] Fix | Delete
_NL_WMON_4,
[199] Fix | Delete
_NL_WMON_5,
[200] Fix | Delete
_NL_WMON_6,
[201] Fix | Delete
_NL_WMON_7,
[202] Fix | Delete
_NL_WMON_8,
[203] Fix | Delete
_NL_WMON_9,
[204] Fix | Delete
_NL_WMON_10,
[205] Fix | Delete
_NL_WMON_11,
[206] Fix | Delete
_NL_WMON_12,
[207] Fix | Delete
[208] Fix | Delete
_NL_WAM_STR, /* Ante meridiem string. */
[209] Fix | Delete
_NL_WPM_STR, /* Post meridiem string. */
[210] Fix | Delete
[211] Fix | Delete
_NL_WD_T_FMT, /* Date and time format for strftime. */
[212] Fix | Delete
_NL_WD_FMT, /* Date format for strftime. */
[213] Fix | Delete
_NL_WT_FMT, /* Time format for strftime. */
[214] Fix | Delete
_NL_WT_FMT_AMPM, /* 12-hour time format for strftime. */
[215] Fix | Delete
[216] Fix | Delete
_NL_WERA_YEAR, /* Year in alternate era format. */
[217] Fix | Delete
_NL_WERA_D_FMT, /* Date in alternate era format. */
[218] Fix | Delete
_NL_WALT_DIGITS, /* Alternate symbols for digits. */
[219] Fix | Delete
_NL_WERA_D_T_FMT, /* Date and time in alternate era format. */
[220] Fix | Delete
_NL_WERA_T_FMT, /* Time in alternate era format. */
[221] Fix | Delete
[222] Fix | Delete
_NL_TIME_WEEK_NDAYS,
[223] Fix | Delete
_NL_TIME_WEEK_1STDAY,
[224] Fix | Delete
_NL_TIME_WEEK_1STWEEK,
[225] Fix | Delete
_NL_TIME_FIRST_WEEKDAY,
[226] Fix | Delete
_NL_TIME_FIRST_WORKDAY,
[227] Fix | Delete
_NL_TIME_CAL_DIRECTION,
[228] Fix | Delete
_NL_TIME_TIMEZONE,
[229] Fix | Delete
[230] Fix | Delete
_DATE_FMT, /* strftime format for date. */
[231] Fix | Delete
#define _DATE_FMT _DATE_FMT
[232] Fix | Delete
_NL_W_DATE_FMT,
[233] Fix | Delete
[234] Fix | Delete
_NL_TIME_CODESET,
[235] Fix | Delete
[236] Fix | Delete
/* Long month names, in the grammatical form used when the month
[237] Fix | Delete
is named by itself. */
[238] Fix | Delete
__ALTMON_1, /* January */
[239] Fix | Delete
__ALTMON_2,
[240] Fix | Delete
__ALTMON_3,
[241] Fix | Delete
__ALTMON_4,
[242] Fix | Delete
__ALTMON_5,
[243] Fix | Delete
__ALTMON_6,
[244] Fix | Delete
__ALTMON_7,
[245] Fix | Delete
__ALTMON_8,
[246] Fix | Delete
__ALTMON_9,
[247] Fix | Delete
__ALTMON_10,
[248] Fix | Delete
__ALTMON_11,
[249] Fix | Delete
__ALTMON_12,
[250] Fix | Delete
#ifdef __USE_GNU
[251] Fix | Delete
# define ALTMON_1 __ALTMON_1
[252] Fix | Delete
# define ALTMON_2 __ALTMON_2
[253] Fix | Delete
# define ALTMON_3 __ALTMON_3
[254] Fix | Delete
# define ALTMON_4 __ALTMON_4
[255] Fix | Delete
# define ALTMON_5 __ALTMON_5
[256] Fix | Delete
# define ALTMON_6 __ALTMON_6
[257] Fix | Delete
# define ALTMON_7 __ALTMON_7
[258] Fix | Delete
# define ALTMON_8 __ALTMON_8
[259] Fix | Delete
# define ALTMON_9 __ALTMON_9
[260] Fix | Delete
# define ALTMON_10 __ALTMON_10
[261] Fix | Delete
# define ALTMON_11 __ALTMON_11
[262] Fix | Delete
# define ALTMON_12 __ALTMON_12
[263] Fix | Delete
#endif
[264] Fix | Delete
[265] Fix | Delete
/* Long month names, in the grammatical form used when the month
[266] Fix | Delete
is named by itself. */
[267] Fix | Delete
_NL_WALTMON_1, /* January */
[268] Fix | Delete
_NL_WALTMON_2,
[269] Fix | Delete
_NL_WALTMON_3,
[270] Fix | Delete
_NL_WALTMON_4,
[271] Fix | Delete
_NL_WALTMON_5,
[272] Fix | Delete
_NL_WALTMON_6,
[273] Fix | Delete
_NL_WALTMON_7,
[274] Fix | Delete
_NL_WALTMON_8,
[275] Fix | Delete
_NL_WALTMON_9,
[276] Fix | Delete
_NL_WALTMON_10,
[277] Fix | Delete
_NL_WALTMON_11,
[278] Fix | Delete
_NL_WALTMON_12,
[279] Fix | Delete
[280] Fix | Delete
/* Abbreviated month names, in the grammatical form used when the month
[281] Fix | Delete
is named by itself. */
[282] Fix | Delete
_NL_ABALTMON_1, /* Jan */
[283] Fix | Delete
_NL_ABALTMON_2,
[284] Fix | Delete
_NL_ABALTMON_3,
[285] Fix | Delete
_NL_ABALTMON_4,
[286] Fix | Delete
_NL_ABALTMON_5,
[287] Fix | Delete
_NL_ABALTMON_6,
[288] Fix | Delete
_NL_ABALTMON_7,
[289] Fix | Delete
_NL_ABALTMON_8,
[290] Fix | Delete
_NL_ABALTMON_9,
[291] Fix | Delete
_NL_ABALTMON_10,
[292] Fix | Delete
_NL_ABALTMON_11,
[293] Fix | Delete
_NL_ABALTMON_12,
[294] Fix | Delete
[295] Fix | Delete
/* Abbreviated month names, in the grammatical form used when the month
[296] Fix | Delete
is named by itself. */
[297] Fix | Delete
_NL_WABALTMON_1, /* Jan */
[298] Fix | Delete
_NL_WABALTMON_2,
[299] Fix | Delete
_NL_WABALTMON_3,
[300] Fix | Delete
_NL_WABALTMON_4,
[301] Fix | Delete
_NL_WABALTMON_5,
[302] Fix | Delete
_NL_WABALTMON_6,
[303] Fix | Delete
_NL_WABALTMON_7,
[304] Fix | Delete
_NL_WABALTMON_8,
[305] Fix | Delete
_NL_WABALTMON_9,
[306] Fix | Delete
_NL_WABALTMON_10,
[307] Fix | Delete
_NL_WABALTMON_11,
[308] Fix | Delete
_NL_WABALTMON_12,
[309] Fix | Delete
[310] Fix | Delete
_NL_NUM_LC_TIME, /* Number of indices in LC_TIME category. */
[311] Fix | Delete
[312] Fix | Delete
/* LC_COLLATE category: text sorting.
[313] Fix | Delete
This information is accessed by the strcoll and strxfrm functions.
[314] Fix | Delete
These `nl_langinfo' names are used only internally. */
[315] Fix | Delete
_NL_COLLATE_NRULES = _NL_ITEM (__LC_COLLATE, 0),
[316] Fix | Delete
_NL_COLLATE_RULESETS,
[317] Fix | Delete
_NL_COLLATE_TABLEMB,
[318] Fix | Delete
_NL_COLLATE_WEIGHTMB,
[319] Fix | Delete
_NL_COLLATE_EXTRAMB,
[320] Fix | Delete
_NL_COLLATE_INDIRECTMB,
[321] Fix | Delete
_NL_COLLATE_GAP1,
[322] Fix | Delete
_NL_COLLATE_GAP2,
[323] Fix | Delete
_NL_COLLATE_GAP3,
[324] Fix | Delete
_NL_COLLATE_TABLEWC,
[325] Fix | Delete
_NL_COLLATE_WEIGHTWC,
[326] Fix | Delete
_NL_COLLATE_EXTRAWC,
[327] Fix | Delete
_NL_COLLATE_INDIRECTWC,
[328] Fix | Delete
_NL_COLLATE_SYMB_HASH_SIZEMB,
[329] Fix | Delete
_NL_COLLATE_SYMB_TABLEMB,
[330] Fix | Delete
_NL_COLLATE_SYMB_EXTRAMB,
[331] Fix | Delete
_NL_COLLATE_COLLSEQMB,
[332] Fix | Delete
_NL_COLLATE_COLLSEQWC,
[333] Fix | Delete
_NL_COLLATE_CODESET,
[334] Fix | Delete
_NL_NUM_LC_COLLATE,
[335] Fix | Delete
[336] Fix | Delete
/* LC_CTYPE category: character classification.
[337] Fix | Delete
This information is accessed by the functions in <ctype.h>.
[338] Fix | Delete
These `nl_langinfo' names are used only internally. */
[339] Fix | Delete
_NL_CTYPE_CLASS = _NL_ITEM (__LC_CTYPE, 0),
[340] Fix | Delete
_NL_CTYPE_TOUPPER,
[341] Fix | Delete
_NL_CTYPE_GAP1,
[342] Fix | Delete
_NL_CTYPE_TOLOWER,
[343] Fix | Delete
_NL_CTYPE_GAP2,
[344] Fix | Delete
_NL_CTYPE_CLASS32,
[345] Fix | Delete
_NL_CTYPE_GAP3,
[346] Fix | Delete
_NL_CTYPE_GAP4,
[347] Fix | Delete
_NL_CTYPE_GAP5,
[348] Fix | Delete
_NL_CTYPE_GAP6,
[349] Fix | Delete
_NL_CTYPE_CLASS_NAMES,
[350] Fix | Delete
_NL_CTYPE_MAP_NAMES,
[351] Fix | Delete
_NL_CTYPE_WIDTH,
[352] Fix | Delete
_NL_CTYPE_MB_CUR_MAX,
[353] Fix | Delete
_NL_CTYPE_CODESET_NAME,
[354] Fix | Delete
CODESET = _NL_CTYPE_CODESET_NAME,
[355] Fix | Delete
#define CODESET CODESET
[356] Fix | Delete
_NL_CTYPE_TOUPPER32,
[357] Fix | Delete
_NL_CTYPE_TOLOWER32,
[358] Fix | Delete
_NL_CTYPE_CLASS_OFFSET,
[359] Fix | Delete
_NL_CTYPE_MAP_OFFSET,
[360] Fix | Delete
_NL_CTYPE_INDIGITS_MB_LEN,
[361] Fix | Delete
_NL_CTYPE_INDIGITS0_MB,
[362] Fix | Delete
_NL_CTYPE_INDIGITS1_MB,
[363] Fix | Delete
_NL_CTYPE_INDIGITS2_MB,
[364] Fix | Delete
_NL_CTYPE_INDIGITS3_MB,
[365] Fix | Delete
_NL_CTYPE_INDIGITS4_MB,
[366] Fix | Delete
_NL_CTYPE_INDIGITS5_MB,
[367] Fix | Delete
_NL_CTYPE_INDIGITS6_MB,
[368] Fix | Delete
_NL_CTYPE_INDIGITS7_MB,
[369] Fix | Delete
_NL_CTYPE_INDIGITS8_MB,
[370] Fix | Delete
_NL_CTYPE_INDIGITS9_MB,
[371] Fix | Delete
_NL_CTYPE_INDIGITS_WC_LEN,
[372] Fix | Delete
_NL_CTYPE_INDIGITS0_WC,
[373] Fix | Delete
_NL_CTYPE_INDIGITS1_WC,
[374] Fix | Delete
_NL_CTYPE_INDIGITS2_WC,
[375] Fix | Delete
_NL_CTYPE_INDIGITS3_WC,
[376] Fix | Delete
_NL_CTYPE_INDIGITS4_WC,
[377] Fix | Delete
_NL_CTYPE_INDIGITS5_WC,
[378] Fix | Delete
_NL_CTYPE_INDIGITS6_WC,
[379] Fix | Delete
_NL_CTYPE_INDIGITS7_WC,
[380] Fix | Delete
_NL_CTYPE_INDIGITS8_WC,
[381] Fix | Delete
_NL_CTYPE_INDIGITS9_WC,
[382] Fix | Delete
_NL_CTYPE_OUTDIGIT0_MB,
[383] Fix | Delete
_NL_CTYPE_OUTDIGIT1_MB,
[384] Fix | Delete
_NL_CTYPE_OUTDIGIT2_MB,
[385] Fix | Delete
_NL_CTYPE_OUTDIGIT3_MB,
[386] Fix | Delete
_NL_CTYPE_OUTDIGIT4_MB,
[387] Fix | Delete
_NL_CTYPE_OUTDIGIT5_MB,
[388] Fix | Delete
_NL_CTYPE_OUTDIGIT6_MB,
[389] Fix | Delete
_NL_CTYPE_OUTDIGIT7_MB,
[390] Fix | Delete
_NL_CTYPE_OUTDIGIT8_MB,
[391] Fix | Delete
_NL_CTYPE_OUTDIGIT9_MB,
[392] Fix | Delete
_NL_CTYPE_OUTDIGIT0_WC,
[393] Fix | Delete
_NL_CTYPE_OUTDIGIT1_WC,
[394] Fix | Delete
_NL_CTYPE_OUTDIGIT2_WC,
[395] Fix | Delete
_NL_CTYPE_OUTDIGIT3_WC,
[396] Fix | Delete
_NL_CTYPE_OUTDIGIT4_WC,
[397] Fix | Delete
_NL_CTYPE_OUTDIGIT5_WC,
[398] Fix | Delete
_NL_CTYPE_OUTDIGIT6_WC,
[399] Fix | Delete
_NL_CTYPE_OUTDIGIT7_WC,
[400] Fix | Delete
_NL_CTYPE_OUTDIGIT8_WC,
[401] Fix | Delete
_NL_CTYPE_OUTDIGIT9_WC,
[402] Fix | Delete
_NL_CTYPE_TRANSLIT_TAB_SIZE,
[403] Fix | Delete
_NL_CTYPE_TRANSLIT_FROM_IDX,
[404] Fix | Delete
_NL_CTYPE_TRANSLIT_FROM_TBL,
[405] Fix | Delete
_NL_CTYPE_TRANSLIT_TO_IDX,
[406] Fix | Delete
_NL_CTYPE_TRANSLIT_TO_TBL,
[407] Fix | Delete
_NL_CTYPE_TRANSLIT_DEFAULT_MISSING_LEN,
[408] Fix | Delete
_NL_CTYPE_TRANSLIT_DEFAULT_MISSING,
[409] Fix | Delete
_NL_CTYPE_TRANSLIT_IGNORE_LEN,
[410] Fix | Delete
_NL_CTYPE_TRANSLIT_IGNORE,
[411] Fix | Delete
_NL_CTYPE_MAP_TO_NONASCII,
[412] Fix | Delete
_NL_CTYPE_NONASCII_CASE,
[413] Fix | Delete
_NL_CTYPE_EXTRA_MAP_1,
[414] Fix | Delete
_NL_CTYPE_EXTRA_MAP_2,
[415] Fix | Delete
_NL_CTYPE_EXTRA_MAP_3,
[416] Fix | Delete
_NL_CTYPE_EXTRA_MAP_4,
[417] Fix | Delete
_NL_CTYPE_EXTRA_MAP_5,
[418] Fix | Delete
_NL_CTYPE_EXTRA_MAP_6,
[419] Fix | Delete
_NL_CTYPE_EXTRA_MAP_7,
[420] Fix | Delete
_NL_CTYPE_EXTRA_MAP_8,
[421] Fix | Delete
_NL_CTYPE_EXTRA_MAP_9,
[422] Fix | Delete
_NL_CTYPE_EXTRA_MAP_10,
[423] Fix | Delete
_NL_CTYPE_EXTRA_MAP_11,
[424] Fix | Delete
_NL_CTYPE_EXTRA_MAP_12,
[425] Fix | Delete
_NL_CTYPE_EXTRA_MAP_13,
[426] Fix | Delete
_NL_CTYPE_EXTRA_MAP_14,
[427] Fix | Delete
_NL_NUM_LC_CTYPE,
[428] Fix | Delete
[429] Fix | Delete
/* LC_MONETARY category: formatting of monetary quantities.
[430] Fix | Delete
These items each correspond to a member of `struct lconv',
[431] Fix | Delete
defined in <locale.h>. */
[432] Fix | Delete
__INT_CURR_SYMBOL = _NL_ITEM (__LC_MONETARY, 0),
[433] Fix | Delete
#ifdef __USE_GNU
[434] Fix | Delete
# define INT_CURR_SYMBOL __INT_CURR_SYMBOL
[435] Fix | Delete
#endif
[436] Fix | Delete
__CURRENCY_SYMBOL,
[437] Fix | Delete
#ifdef __USE_GNU
[438] Fix | Delete
# define CURRENCY_SYMBOL __CURRENCY_SYMBOL
[439] Fix | Delete
#endif
[440] Fix | Delete
__MON_DECIMAL_POINT,
[441] Fix | Delete
#ifdef __USE_GNU
[442] Fix | Delete
# define MON_DECIMAL_POINT __MON_DECIMAL_POINT
[443] Fix | Delete
#endif
[444] Fix | Delete
__MON_THOUSANDS_SEP,
[445] Fix | Delete
#ifdef __USE_GNU
[446] Fix | Delete
# define MON_THOUSANDS_SEP __MON_THOUSANDS_SEP
[447] Fix | Delete
#endif
[448] Fix | Delete
__MON_GROUPING,
[449] Fix | Delete
#ifdef __USE_GNU
[450] Fix | Delete
# define MON_GROUPING __MON_GROUPING
[451] Fix | Delete
#endif
[452] Fix | Delete
__POSITIVE_SIGN,
[453] Fix | Delete
#ifdef __USE_GNU
[454] Fix | Delete
# define POSITIVE_SIGN __POSITIVE_SIGN
[455] Fix | Delete
#endif
[456] Fix | Delete
__NEGATIVE_SIGN,
[457] Fix | Delete
#ifdef __USE_GNU
[458] Fix | Delete
# define NEGATIVE_SIGN __NEGATIVE_SIGN
[459] Fix | Delete
#endif
[460] Fix | Delete
__INT_FRAC_DIGITS,
[461] Fix | Delete
#ifdef __USE_GNU
[462] Fix | Delete
# define INT_FRAC_DIGITS __INT_FRAC_DIGITS
[463] Fix | Delete
#endif
[464] Fix | Delete
__FRAC_DIGITS,
[465] Fix | Delete
#ifdef __USE_GNU
[466] Fix | Delete
# define FRAC_DIGITS __FRAC_DIGITS
[467] Fix | Delete
#endif
[468] Fix | Delete
__P_CS_PRECEDES,
[469] Fix | Delete
#ifdef __USE_GNU
[470] Fix | Delete
# define P_CS_PRECEDES __P_CS_PRECEDES
[471] Fix | Delete
#endif
[472] Fix | Delete
__P_SEP_BY_SPACE,
[473] Fix | Delete
#ifdef __USE_GNU
[474] Fix | Delete
# define P_SEP_BY_SPACE __P_SEP_BY_SPACE
[475] Fix | Delete
#endif
[476] Fix | Delete
__N_CS_PRECEDES,
[477] Fix | Delete
#ifdef __USE_GNU
[478] Fix | Delete
# define N_CS_PRECEDES __N_CS_PRECEDES
[479] Fix | Delete
#endif
[480] Fix | Delete
__N_SEP_BY_SPACE,
[481] Fix | Delete
#ifdef __USE_GNU
[482] Fix | Delete
# define N_SEP_BY_SPACE __N_SEP_BY_SPACE
[483] Fix | Delete
#endif
[484] Fix | Delete
__P_SIGN_POSN,
[485] Fix | Delete
#ifdef __USE_GNU
[486] Fix | Delete
# define P_SIGN_POSN __P_SIGN_POSN
[487] Fix | Delete
#endif
[488] Fix | Delete
__N_SIGN_POSN,
[489] Fix | Delete
#ifdef __USE_GNU
[490] Fix | Delete
# define N_SIGN_POSN __N_SIGN_POSN
[491] Fix | Delete
#endif
[492] Fix | Delete
_NL_MONETARY_CRNCYSTR,
[493] Fix | Delete
#define CRNCYSTR _NL_MONETARY_CRNCYSTR
[494] Fix | Delete
__INT_P_CS_PRECEDES,
[495] Fix | Delete
#ifdef __USE_GNU
[496] Fix | Delete
# define INT_P_CS_PRECEDES __INT_P_CS_PRECEDES
[497] Fix | Delete
#endif
[498] Fix | Delete
__INT_P_SEP_BY_SPACE,
[499] Fix | Delete
12
It is recommended that you Edit text format, this type of Fix handles quite a lot in one request
Function