wctype.h revision 1.9 1 1.9 joerg /* $NetBSD: wctype.h,v 1.9 2013/04/27 21:35:25 joerg Exp $ */
2 1.2 itojun
3 1.2 itojun /*-
4 1.2 itojun * Copyright (c)1999 Citrus Project,
5 1.2 itojun * All rights reserved.
6 1.2 itojun *
7 1.2 itojun * Redistribution and use in source and binary forms, with or without
8 1.2 itojun * modification, are permitted provided that the following conditions
9 1.2 itojun * are met:
10 1.2 itojun * 1. Redistributions of source code must retain the above copyright
11 1.2 itojun * notice, this list of conditions and the following disclaimer.
12 1.2 itojun * 2. Redistributions in binary form must reproduce the above copyright
13 1.2 itojun * notice, this list of conditions and the following disclaimer in the
14 1.2 itojun * documentation and/or other materials provided with the distribution.
15 1.2 itojun *
16 1.2 itojun * THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
17 1.2 itojun * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
18 1.2 itojun * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
19 1.2 itojun * ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
20 1.2 itojun * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
21 1.2 itojun * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
22 1.2 itojun * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
23 1.2 itojun * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
24 1.2 itojun * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
25 1.2 itojun * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
26 1.2 itojun * SUCH DAMAGE.
27 1.2 itojun *
28 1.2 itojun * citrus Id: wctype.h,v 1.4 2000/12/21 01:50:21 itojun Exp
29 1.2 itojun */
30 1.2 itojun
31 1.2 itojun #ifndef _WCTYPE_H_
32 1.2 itojun #define _WCTYPE_H_
33 1.2 itojun
34 1.2 itojun #include <sys/cdefs.h>
35 1.9 joerg #include <sys/featuretest.h>
36 1.7 tnozaki #include <sys/ansi.h>
37 1.2 itojun
38 1.2 itojun #ifdef _BSD_WINT_T_
39 1.2 itojun typedef _BSD_WINT_T_ wint_t;
40 1.2 itojun #undef _BSD_WINT_T_
41 1.2 itojun #endif
42 1.2 itojun
43 1.5 tshiozak #ifdef _BSD_WCTRANS_T_
44 1.5 tshiozak typedef _BSD_WCTRANS_T_ wctrans_t;
45 1.5 tshiozak #undef _BSD_WCTRANS_T_
46 1.5 tshiozak #endif
47 1.5 tshiozak
48 1.5 tshiozak #ifdef _BSD_WCTYPE_T_
49 1.5 tshiozak typedef _BSD_WCTYPE_T_ wctype_t;
50 1.5 tshiozak #undef _BSD_WCTYPE_T_
51 1.5 tshiozak #endif
52 1.5 tshiozak
53 1.2 itojun #ifndef WEOF
54 1.2 itojun #define WEOF ((wint_t)-1)
55 1.2 itojun #endif
56 1.2 itojun
57 1.2 itojun __BEGIN_DECLS
58 1.6 perry int iswalnum(wint_t);
59 1.6 perry int iswalpha(wint_t);
60 1.6 perry int iswblank(wint_t);
61 1.6 perry int iswcntrl(wint_t);
62 1.6 perry int iswdigit(wint_t);
63 1.6 perry int iswgraph(wint_t);
64 1.6 perry int iswlower(wint_t);
65 1.6 perry int iswprint(wint_t);
66 1.6 perry int iswpunct(wint_t);
67 1.6 perry int iswspace(wint_t);
68 1.6 perry int iswupper(wint_t);
69 1.6 perry int iswxdigit(wint_t);
70 1.6 perry int iswctype(wint_t, wctype_t);
71 1.6 perry wint_t towctrans(wint_t, wctrans_t);
72 1.6 perry wint_t towlower(wint_t);
73 1.6 perry wint_t towupper(wint_t);
74 1.6 perry wctrans_t wctrans(const char *);
75 1.6 perry wctype_t wctype(const char *);
76 1.8 joerg
77 1.8 joerg #if (_POSIX_C_SOURCE - 0) >= 200809L || defined(_NETBSD_SOURCE)
78 1.8 joerg # ifndef __LOCALE_T_DECLARED
79 1.8 joerg typedef struct _locale *locale_t;
80 1.8 joerg # define __LOCALE_T_DECLARED
81 1.8 joerg # endif
82 1.8 joerg int iswalnum_l(wint_t, locale_t);
83 1.8 joerg int iswalpha_l(wint_t, locale_t);
84 1.8 joerg int iswblank_l(wint_t, locale_t);
85 1.8 joerg int iswcntrl_l(wint_t, locale_t);
86 1.8 joerg int iswdigit_l(wint_t, locale_t);
87 1.8 joerg int iswgraph_l(wint_t, locale_t);
88 1.8 joerg int iswlower_l(wint_t, locale_t);
89 1.8 joerg int iswprint_l(wint_t, locale_t);
90 1.8 joerg int iswpunct_l(wint_t, locale_t);
91 1.8 joerg int iswspace_l(wint_t, locale_t);
92 1.8 joerg int iswupper_l(wint_t, locale_t);
93 1.8 joerg int iswxdigit_l(wint_t, locale_t);
94 1.8 joerg int iswctype_l(wint_t, wctype_t, locale_t);
95 1.8 joerg wint_t towctrans_l(wint_t, wctrans_t, locale_t);
96 1.8 joerg wint_t towlower_l(wint_t, locale_t);
97 1.8 joerg wint_t towupper_l(wint_t, locale_t);
98 1.8 joerg wctrans_t wctrans_l(const char *, locale_t);
99 1.8 joerg wctype_t wctype_l(const char *, locale_t);
100 1.8 joerg #endif
101 1.2 itojun __END_DECLS
102 1.2 itojun
103 1.2 itojun #endif /* _WCTYPE_H_ */
104