예제 #1
0
void *_Locale_messages_create( const char *nm, struct _Locale_name_hint* hint )
{ return __LOCALE_CREATE( nm, LC_MESSAGES ); }
예제 #2
0
void *_Locale_collate_create( const char *nm, struct _Locale_name_hint* hint )
{ return __LOCALE_CREATE( nm, LC_COLLATE ); }
예제 #3
0
void *_Locale_monetary_create( const char *nm, struct _Locale_name_hint* hint )
{ return __LOCALE_CREATE( nm, LC_MONETARY ); }
예제 #4
0
void* _Locale_numeric_create( const char *nm, struct _Locale_name_hint* hint )
{ return __LOCALE_CREATE( nm, LC_NUMERIC ); }
예제 #5
0
void* _Locale_time_create( const char *nm, struct _Locale_name_hint* hint )
{ return __LOCALE_CREATE( nm, LC_TIME ); }
예제 #6
0
void *_Locale_monetary_create( const char *nm )
{ return __LOCALE_CREATE( nm, LC_MONETARY ); }
예제 #7
0
void *_Locale_messages_create( const char *nm )
{ return __LOCALE_CREATE( nm, LC_MESSAGES ); }
예제 #8
0
void *_Locale_collate_create( const char *nm )
{ return __LOCALE_CREATE( nm, LC_COLLATE ); }
예제 #9
0
void* _Locale_time_create( const char *nm )
{ return __LOCALE_CREATE( nm, LC_TIME ); }
예제 #10
0
void* _Locale_numeric_create( const char *nm )
{ return __LOCALE_CREATE( nm, LC_NUMERIC ); }
예제 #11
0
void *_Locale_ctype_create( const char *nm )
{ return __LOCALE_CREATE( nm, LC_CTYPE ); }
예제 #12
0
struct _Locale_ctype *_Locale_ctype_create( const char *nm, struct _Locale_name_hint* hint )
{ return (struct _Locale_ctype*)__LOCALE_CREATE( nm, LC_CTYPE ); }