D | c_locale_glibc2.c | 629 const char *_Locale_full_dayofweek(struct _Locale_time *__loc, int _d ) in _Locale_full_dayofweek() argument 631 return nl_langinfo_l(DAY_1 + _d, (locale_t)__loc); in _Locale_full_dayofweek() 634 const char *_Locale_abbrev_dayofweek(struct _Locale_time *__loc, int _d ) in _Locale_abbrev_dayofweek() argument 636 return nl_langinfo_l(ABDAY_1 + _d, (locale_t)__loc); in _Locale_abbrev_dayofweek() 679 const wchar_t *_WLocale_full_dayofweek(struct _Locale_time *__loc, int _d, wchar_t *buf, size_t buf… in _WLocale_full_dayofweek() argument 680 { return _ToWChar(_Locale_full_dayofweek(__loc, _d), buf, bufSize); } in _WLocale_full_dayofweek() 681 const wchar_t *_WLocale_abbrev_dayofweek(struct _Locale_time *__loc, int _d, wchar_t *buf, size_t b… in _WLocale_abbrev_dayofweek() argument 682 { return _ToWChar(_Locale_abbrev_dayofweek(__loc, _d), buf, bufSize); } in _WLocale_abbrev_dayofweek()
|