1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
|
#ifndef __WCTYPE_H__
#define __WCTYPE_H__
/*
UNG's Not GNU
MIT License
Copyright (c) 2011-2020 Jakob Kaivo <jkk@ung.org>
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.
*/
#if (defined __STDC_VERSION__ && 199409 <= __STDC_VERSION__)
/* ./src/wctype/WEOF.c */
#define WEOF ((wint_t)(-1))
#endif
#if (defined __STDC_VERSION__ && 199409 <= __STDC_VERSION__)
/* ./src/wctype/wctrans_t.c */
#ifndef __TYPE_wctrans_t_DEFINED__
#define __TYPE_wctrans_t_DEFINED__
typedef int wctrans_t;
#endif
/* ./src/wctype/wctype_t.c */
#ifndef __TYPE_wctype_t_DEFINED__
#define __TYPE_wctype_t_DEFINED__
typedef int wctype_t;
#endif
/* ./src/wctype/wint_t.c */
#ifndef __TYPE_wint_t_DEFINED__
#define __TYPE_wint_t_DEFINED__
typedef int wint_t;
#endif
#endif
#if (defined __STDC_VERSION__ && 199409 <= __STDC_VERSION__)
/* ./src/wctype/iswalnum.c */
int iswalnum(wint_t __wc);
/* ./src/wctype/iswalpha.c */
int iswalpha(wint_t __wc);
/* ./src/wctype/iswcntrl.c */
int iswcntrl(wint_t __wc);
/* ./src/wctype/iswctype.c */
int iswctype(wint_t __wc, wctype_t __desc);
/* ./src/wctype/iswdigit.c */
int iswdigit(wint_t __wc);
/* ./src/wctype/iswgraph.c */
int iswgraph(wint_t __wc);
/* ./src/wctype/iswlower.c */
int iswlower(wint_t __wc);
/* ./src/wctype/iswprint.c */
int iswprint(wint_t __wc);
/* ./src/wctype/iswpunct.c */
int iswpunct(wint_t __wc);
/* ./src/wctype/iswspace.c */
int iswspace(wint_t __wc);
/* ./src/wctype/iswupper.c */
int iswupper(wint_t __wc);
/* ./src/wctype/iswxdigit.c */
int iswxdigit(wint_t __wc);
/* ./src/wctype/towctrans.c */
wint_t towctrans(wint_t __wc, wctrans_t __desc);
/* ./src/wctype/towlower.c */
wint_t towlower(wint_t __wc);
/* ./src/wctype/towupper.c */
wint_t towupper(wint_t __wc);
/* ./src/wctype/wctrans.c */
wctrans_t wctrans(const char * __property);
/* ./src/wctype/wctype.c */
wctype_t wctype(const char * __property);
#endif
#if (defined __STDC_VERSION__ && 199901 <= __STDC_VERSION__)
/* ./src/wctype/iswblank.c */
int iswblank(wint_t __wc);
#endif
#endif
|