Home | History | Annotate | Download | only in lib

Lines Matching defs:thousands

268   /* The thousands character of the current locale.  */
269 wchar_t thousands = L'\0';
281 /* Figure out the thousands separator character. */
283 thousands = __btowc (*_NL_CURRENT (LC_NUMERIC, THOUSANDS_SEP));
284 if (thousands == WEOF)
285 thousands = L'\0';
287 if (thousands == L'\0')
346 if ((wchar_t) c != thousands
350 if (*s == thousands)
353 end = correctly_grouped_prefix (s, end, thousands, grouping);