mirror of
https://sourceware.org/git/glibc.git
synced 2024-11-18 11:00:07 +00:00
da4cfe381c
* ctype/ctype-extn.c (isblank_l): Add weak alias. * sysdeps/generic/strtol_l.c (strtol_l): Likewise. * sysdeps/generic/strtoll_l.c (strtoll_l): Likewise. * sysdeps/generic/strtoul_l.c (strtoul_l): Likewise. * sysdeps/generic/strtoull_l.c (strtoull_l): Likewise. * wctype/iswctype_l.c (iswctype_l): Likewise. * time/strftime.c [USE_IN_EXTENDED_LOCALE_MODEL]: No libc_hidden_def. * ctype/ctype.h (__exctype_l): Don't declare __ name. * stdlib/stdlib.h: Don't declare __*_l names. * include/stdlib.h: Declare them here instead. * include/string.h: Don't declare __*_l names. * string/string.h: Declare them here instead. * time/time.h: Don't declare __*_l names. * include/time.h: Declare them here instead. * wcsmbs/wchar.h: Don't declare __*_l names. * include/wchar.h: Declare them here instead. * wctype/wctype.h: Declare iswalnum_l, not __iswalnum_l. Don't declare __*_l names. * include/wctype.h: Declare them here instead. * stdlib/monetary.h: Declare strfmon_l, not __strfmon_l. * stdlib/strfmon_l.c (strfmon_l): Define as weak alias. * locale/langinfo.h: Don't declare __nl_langinfo_l. * include/langinfo.h: Declare it here with __typeof.
84 lines
2.9 KiB
C
84 lines
2.9 KiB
C
#ifndef _WCTYPE_H
|
|
|
|
/* We try to get wint_t from <stddef.h>, but not all GCC versions define it
|
|
there. So define it ourselves if it remains undefined. */
|
|
# define __need_wint_t
|
|
# include <stddef.h>
|
|
# ifndef _WINT_T
|
|
/* Integral type unchanged by default argument promotions that can
|
|
hold any value corresponding to members of the extended character
|
|
set, as well as at least one value that does not correspond to any
|
|
member of the extended character set. */
|
|
# define _WINT_T
|
|
typedef unsigned int wint_t;
|
|
# endif
|
|
|
|
/* Need to repeat these prototypes here, as wctype/wctype.h defines all
|
|
these as macros and thus we couldn't add libc_hidden_proto. */
|
|
|
|
extern int iswalpha (wint_t __wc);
|
|
extern int iswdigit (wint_t __wc);
|
|
extern int iswlower (wint_t __wc);
|
|
extern int iswspace (wint_t __wc);
|
|
extern int iswxdigit (wint_t __wc);
|
|
extern wint_t towlower (wint_t __wc);
|
|
extern wint_t towupper (wint_t __wc);
|
|
|
|
libc_hidden_proto (iswalpha)
|
|
libc_hidden_proto (iswdigit)
|
|
libc_hidden_proto (iswlower)
|
|
libc_hidden_proto (iswspace)
|
|
libc_hidden_proto (iswxdigit)
|
|
libc_hidden_proto (towlower)
|
|
libc_hidden_proto (towupper)
|
|
|
|
#include <wctype/wctype.h>
|
|
|
|
/* Internal interfaces. */
|
|
extern int __iswalpha_l_internal (wint_t __wc, __locale_t __locale)
|
|
attribute_hidden;
|
|
extern int __iswdigit_l_internal (wint_t __wc, __locale_t __locale)
|
|
attribute_hidden;
|
|
extern int __iswspace_l_internal (wint_t __wc, __locale_t __locale)
|
|
attribute_hidden;
|
|
extern int __iswxdigit_l_internal (wint_t __wc, __locale_t __locale)
|
|
attribute_hidden;
|
|
extern int __iswspace (wint_t __wc);
|
|
extern int __iswctype (wint_t __wc, wctype_t __desc);
|
|
extern int __iswctype_internal (wint_t __wc, wctype_t __desc) attribute_hidden;
|
|
extern wctype_t __wctype (__const char *__property);
|
|
extern wint_t __towctrans (wint_t __wc, wctrans_t __desc);
|
|
|
|
extern __typeof (iswalnum_l) __iswalnum_l;
|
|
extern __typeof (iswalpha_l) __iswalpha_l;
|
|
extern __typeof (iswblank_l) __iswblank_l;
|
|
extern __typeof (iswcntrl_l) __iswcntrl_l;
|
|
extern __typeof (iswdigit_l) __iswdigit_l;
|
|
extern __typeof (iswlower_l) __iswlower_l;
|
|
extern __typeof (iswgraph_l) __iswgraph_l;
|
|
extern __typeof (iswprint_l) __iswprint_l;
|
|
extern __typeof (iswpunct_l) __iswpunct_l;
|
|
extern __typeof (iswspace_l) __iswspace_l;
|
|
extern __typeof (iswupper_l) __iswupper_l;
|
|
extern __typeof (iswxdigit_l) __iswxdigit_l;
|
|
extern __typeof (towlower_l) __towlower_l;
|
|
extern __typeof (towupper_l) __towupper_l;
|
|
|
|
libc_hidden_proto (__iswctype)
|
|
libc_hidden_proto (__iswalnum_l)
|
|
libc_hidden_proto (__iswalpha_l)
|
|
libc_hidden_proto (__iswblank_l)
|
|
libc_hidden_proto (__iswcntrl_l)
|
|
libc_hidden_proto (__iswdigit_l)
|
|
libc_hidden_proto (__iswlower_l)
|
|
libc_hidden_proto (__iswgraph_l)
|
|
libc_hidden_proto (__iswprint_l)
|
|
libc_hidden_proto (__iswpunct_l)
|
|
libc_hidden_proto (__iswspace_l)
|
|
libc_hidden_proto (__iswupper_l)
|
|
libc_hidden_proto (__iswxdigit_l)
|
|
libc_hidden_proto (__towlower_l)
|
|
libc_hidden_proto (__towupper_l)
|
|
|
|
#endif
|