Rename __get_locale_XXX to __get_XXX_locale to use unified naming scheme

Signed-off by: Corinna Vinschen <corinna@vinschen.de>
This commit is contained in:
Corinna Vinschen 2016-07-25 11:24:59 +02:00
parent fb4fb921c6
commit 542b970d4e
3 changed files with 43 additions and 19 deletions

View File

@ -225,7 +225,7 @@ __get_current_locale ()
#ifdef __CYGWIN__ #ifdef __CYGWIN__
_ELIDABLE_INLINE const struct lc_collate_T * _ELIDABLE_INLINE const struct lc_collate_T *
__get_locale_collate (struct __locale_t *locale) __get_collate_locale (struct __locale_t *locale)
{ {
return (const struct lc_collate_T *) locale->lc_cat[LC_COLLATE].ptr; return (const struct lc_collate_T *) locale->lc_cat[LC_COLLATE].ptr;
} }
@ -233,12 +233,13 @@ __get_locale_collate (struct __locale_t *locale)
_ELIDABLE_INLINE const struct lc_collate_T * _ELIDABLE_INLINE const struct lc_collate_T *
__get_current_collate_locale (void) __get_current_collate_locale (void)
{ {
return (const struct lc_collate_T *) __get_current_locale ()->lc_cat[LC_COLLATE].ptr; return (const struct lc_collate_T *)
__get_current_locale ()->lc_cat[LC_COLLATE].ptr;
} }
#endif #endif
_ELIDABLE_INLINE const struct lc_ctype_T * _ELIDABLE_INLINE const struct lc_ctype_T *
__get_locale_ctype (struct __locale_t *locale) __get_ctype_locale (struct __locale_t *locale)
{ {
return (const struct lc_ctype_T *) (locale)->lc_cat[LC_CTYPE].ptr; return (const struct lc_ctype_T *) (locale)->lc_cat[LC_CTYPE].ptr;
} }
@ -247,7 +248,7 @@ _ELIDABLE_INLINE int
__locale_mb_cur_max_l (struct __locale_t *locale) __locale_mb_cur_max_l (struct __locale_t *locale)
{ {
#ifdef __HAVE_LOCALE_INFO__ #ifdef __HAVE_LOCALE_INFO__
return __get_locale_ctype (locale)->mb_cur_max[0]; return __get_ctype_locale (locale)->mb_cur_max[0];
#else #else
return locale->mb_cur_max[0]; return locale->mb_cur_max[0];
#endif #endif
@ -256,37 +257,60 @@ __locale_mb_cur_max_l (struct __locale_t *locale)
_ELIDABLE_INLINE const struct lc_ctype_T * _ELIDABLE_INLINE const struct lc_ctype_T *
__get_current_ctype_locale (void) __get_current_ctype_locale (void)
{ {
return (const struct lc_ctype_T *) __get_current_locale ()->lc_cat[LC_CTYPE].ptr; return (const struct lc_ctype_T *)
__get_current_locale ()->lc_cat[LC_CTYPE].ptr;
}
_ELIDABLE_INLINE const struct lc_monetary_T *
__get_monetary_locale (struct __locale_t *locale)
{
return (const struct lc_monetary_T *) (locale)->lc_cat[LC_MONETARY].ptr;
} }
_ELIDABLE_INLINE const struct lc_monetary_T * _ELIDABLE_INLINE const struct lc_monetary_T *
__get_current_monetary_locale (void) __get_current_monetary_locale (void)
{ {
return (const struct lc_monetary_T *) __get_current_locale ()->lc_cat[LC_MONETARY].ptr; return (const struct lc_monetary_T *)
__get_current_locale ()->lc_cat[LC_MONETARY].ptr;
}
_ELIDABLE_INLINE const struct lc_numeric_T *
__get_numeric_locale (struct __locale_t *locale)
{
return (const struct lc_numeric_T *) (locale)->lc_cat[LC_NUMERIC].ptr;
} }
_ELIDABLE_INLINE const struct lc_numeric_T * _ELIDABLE_INLINE const struct lc_numeric_T *
__get_current_numeric_locale (void) __get_current_numeric_locale (void)
{ {
return (const struct lc_numeric_T *) __get_current_locale ()->lc_cat[LC_NUMERIC].ptr; return (const struct lc_numeric_T *)
__get_current_locale ()->lc_cat[LC_NUMERIC].ptr;
}
_ELIDABLE_INLINE const struct lc_time_T *
__get_time_locale (struct __locale_t *locale)
{
return (const struct lc_time_T *) (locale)->lc_cat[LC_TIME].ptr;
} }
_ELIDABLE_INLINE const struct lc_time_T * _ELIDABLE_INLINE const struct lc_time_T *
__get_current_time_locale (void) __get_current_time_locale (void)
{ {
return (const struct lc_time_T *) __get_current_locale ()->lc_cat[LC_TIME].ptr; return (const struct lc_time_T *)
__get_current_locale ()->lc_cat[LC_TIME].ptr;
} }
_ELIDABLE_INLINE const struct lc_ctype_T * _ELIDABLE_INLINE const struct lc_messages_T *
__get_locale_time (struct __locale_t *locale) __get_messages_locale (struct __locale_t *locale)
{ {
return (const struct lc_time_T *) (locale)->lc_cat[LC_TIME].ptr; return (const struct lc_messages_T *) (locale)->lc_cat[LC_MESSAGES].ptr;
} }
_ELIDABLE_INLINE const struct lc_messages_T * _ELIDABLE_INLINE const struct lc_messages_T *
__get_current_messages_locale (void) __get_current_messages_locale (void)
{ {
return (const struct lc_messages_T *) __get_current_locale ()->lc_cat[LC_MESSAGES].ptr; return (const struct lc_messages_T *)
__get_current_locale ()->lc_cat[LC_MESSAGES].ptr;
} }
_ELIDABLE_INLINE const char * _ELIDABLE_INLINE const char *

View File

@ -698,7 +698,7 @@ __strftime (CHAR *s, size_t maxsize, const CHAR *format,
unsigned long width; unsigned long width;
int tzset_called = 0; int tzset_called = 0;
const struct lc_time_T *_CurrentTimeLocale = __get_locale_time (locale); const struct lc_time_T *_CurrentTimeLocale = __get_time_locale (locale);
for (;;) for (;;)
{ {
while (*format && *format != CQ('%')) while (*format && *format != CQ('%'))

View File

@ -1121,7 +1121,7 @@ wcscoll_l (const wchar_t *__restrict ws1, const wchar_t *__restrict ws2,
struct __locale_t *locale) struct __locale_t *locale)
{ {
int ret; int ret;
LCID collate_lcid = __get_locale_collate (locale)->lcid; LCID collate_lcid = __get_collate_locale (locale)->lcid;
if (!collate_lcid) if (!collate_lcid)
return wcscmp (ws1, ws2); return wcscmp (ws1, ws2);
@ -1145,13 +1145,13 @@ strcoll_l (const char *__restrict s1, const char *__restrict s2,
wchar_t *ws1, *ws2; wchar_t *ws1, *ws2;
tmp_pathbuf tp; tmp_pathbuf tp;
int ret; int ret;
LCID collate_lcid = __get_locale_collate (locale)->lcid; LCID collate_lcid = __get_collate_locale (locale)->lcid;
if (!collate_lcid) if (!collate_lcid)
return strcmp (s1, s2); return strcmp (s1, s2);
/* The ANSI version of CompareString uses the default charset of the lcid, /* The ANSI version of CompareString uses the default charset of the lcid,
so we must use the Unicode version. */ so we must use the Unicode version. */
mbtowc_p collate_mbtowc = __get_locale_collate (locale)->mbtowc; mbtowc_p collate_mbtowc = __get_collate_locale (locale)->mbtowc;
n1 = lc_mbstowcs (collate_mbtowc, NULL, s1, 0) + 1; n1 = lc_mbstowcs (collate_mbtowc, NULL, s1, 0) + 1;
ws1 = (n1 > NT_MAX_PATH ? (wchar_t *) malloc (n1 * sizeof (wchar_t)) ws1 = (n1 > NT_MAX_PATH ? (wchar_t *) malloc (n1 * sizeof (wchar_t))
: tp.w_get ()); : tp.w_get ());
@ -1192,7 +1192,7 @@ wcsxfrm_l (wchar_t *__restrict ws1, const wchar_t *__restrict ws2, size_t wsn,
struct __locale_t *locale) struct __locale_t *locale)
{ {
size_t ret; size_t ret;
LCID collate_lcid = __get_locale_collate (locale)->lcid; LCID collate_lcid = __get_collate_locale (locale)->lcid;
if (!collate_lcid) if (!collate_lcid)
return wcslcpy (ws1, ws2, wsn); return wcslcpy (ws1, ws2, wsn);
@ -1235,13 +1235,13 @@ strxfrm_l (char *__restrict s1, const char *__restrict s2, size_t sn,
size_t n2; size_t n2;
wchar_t *ws2; wchar_t *ws2;
tmp_pathbuf tp; tmp_pathbuf tp;
LCID collate_lcid = __get_locale_collate (locale)->lcid; LCID collate_lcid = __get_collate_locale (locale)->lcid;
if (!collate_lcid) if (!collate_lcid)
return strlcpy (s1, s2, sn); return strlcpy (s1, s2, sn);
/* The ANSI version of LCMapString uses the default charset of the lcid, /* The ANSI version of LCMapString uses the default charset of the lcid,
so we must use the Unicode version. */ so we must use the Unicode version. */
mbtowc_p collate_mbtowc = __get_locale_collate (locale)->mbtowc; mbtowc_p collate_mbtowc = __get_collate_locale (locale)->mbtowc;
n2 = lc_mbstowcs (collate_mbtowc, NULL, s2, 0) + 1; n2 = lc_mbstowcs (collate_mbtowc, NULL, s2, 0) + 1;
ws2 = (n2 > NT_MAX_PATH ? (wchar_t *) malloc (n2 * sizeof (wchar_t)) ws2 = (n2 > NT_MAX_PATH ? (wchar_t *) malloc (n2 * sizeof (wchar_t))
: tp.w_get ()); : tp.w_get ());