Remove socket.S implementation
[glibc.git] / include / wctype.h
blobb29e82484bffbbcc7420140d87864d5aaa072cc2
1 #ifndef _WCTYPE_H
3 #ifndef _ISOMAC
4 /* We try to get wint_t from <stddef.h>, but not all GCC versions define it
5 there. So define it ourselves if it remains undefined. */
6 # define __need_wint_t
7 # include <stddef.h>
8 # ifndef _WINT_T
9 /* Integral type unchanged by default argument promotions that can
10 hold any value corresponding to members of the extended character
11 set, as well as at least one value that does not correspond to any
12 member of the extended character set. */
13 # define _WINT_T
14 typedef unsigned int wint_t;
15 # endif
17 /* Need to repeat these prototypes here, as wctype/wctype.h defines all
18 these as macros and thus we couldn't add libc_hidden_proto. */
20 extern int iswalpha (wint_t __wc);
21 extern int iswalnum (wint_t __wc);
22 extern int iswdigit (wint_t __wc);
23 extern int iswlower (wint_t __wc);
24 extern int iswspace (wint_t __wc);
25 extern int iswxdigit (wint_t __wc);
26 extern wint_t towlower (wint_t __wc);
27 extern wint_t towupper (wint_t __wc);
29 libc_hidden_proto (iswalpha)
30 libc_hidden_proto (iswalnum)
31 libc_hidden_proto (iswdigit)
32 libc_hidden_proto (iswlower)
33 libc_hidden_proto (iswspace)
34 libc_hidden_proto (iswxdigit)
35 libc_hidden_proto (towlower)
36 libc_hidden_proto (towupper)
37 #endif
39 #include <wctype/wctype.h>
41 #ifndef _ISOMAC
42 /* Internal interfaces. */
43 extern int __iswspace (wint_t __wc);
44 extern int __iswctype (wint_t __wc, wctype_t __desc);
45 extern wctype_t __wctype (const char *__property);
46 extern wctrans_t __wctrans (const char *__property);
47 extern wint_t __towctrans (wint_t __wc, wctrans_t __desc);
49 extern __typeof (iswalnum_l) __iswalnum_l;
50 extern __typeof (iswalpha_l) __iswalpha_l;
51 extern __typeof (iswblank_l) __iswblank_l;
52 extern __typeof (iswcntrl_l) __iswcntrl_l;
53 extern __typeof (iswdigit_l) __iswdigit_l;
54 extern __typeof (iswlower_l) __iswlower_l;
55 extern __typeof (iswgraph_l) __iswgraph_l;
56 extern __typeof (iswprint_l) __iswprint_l;
57 extern __typeof (iswpunct_l) __iswpunct_l;
58 extern __typeof (iswspace_l) __iswspace_l;
59 extern __typeof (iswupper_l) __iswupper_l;
60 extern __typeof (iswxdigit_l) __iswxdigit_l;
61 extern __typeof (towlower_l) __towlower_l;
62 extern __typeof (towupper_l) __towupper_l;
64 libc_hidden_proto (__towctrans)
65 libc_hidden_proto (__iswctype)
66 libc_hidden_proto (__iswalnum_l)
67 libc_hidden_proto (__iswalpha_l)
68 libc_hidden_proto (__iswblank_l)
69 libc_hidden_proto (__iswcntrl_l)
70 libc_hidden_proto (__iswdigit_l)
71 libc_hidden_proto (__iswlower_l)
72 libc_hidden_proto (__iswgraph_l)
73 libc_hidden_proto (__iswprint_l)
74 libc_hidden_proto (__iswpunct_l)
75 libc_hidden_proto (__iswspace_l)
76 libc_hidden_proto (__iswupper_l)
77 libc_hidden_proto (__iswxdigit_l)
78 libc_hidden_proto (__towlower_l)
79 libc_hidden_proto (__towupper_l)
81 /* The spec says that isdigit must only match the decimal digits. We
82 can check this without a memory access. */
83 # if IS_IN (libc)
84 # undef iswdigit
85 # define iswdigit(c) ({ wint_t __c = (c); __c >= L'0' && __c <= L'9'; })
86 # undef iswdigit_l
87 # define iswdigit_l(c, l) ({ wint_t __c = (c); __c >= L'0' && __c <= L'9'; })
88 # undef __iswdigit_l
89 # define __iswdigit_l(c, l) ({ wint_t __c = (c); __c >= L'0' && __c <= L'9'; })
90 # endif
92 #endif
93 #endif