Home | History | Annotate | Download | only in lib

Lines Matching defs:thousands

280   /* The thousands character of the current locale.  */
281 wchar_t thousands = L'\0';
293 /* Figure out the thousands separator character. */
295 thousands = __btowc (*_NL_CURRENT (LC_NUMERIC, THOUSANDS_SEP));
296 if (thousands == WEOF)
297 thousands = L'\0';
299 if (thousands == L'\0')
358 if ((wchar_t) c != thousands
362 if (*s == thousands)
365 end = correctly_grouped_prefix (s, end, thousands, grouping);