wctype.h revision 1.5 1 1.5 tshiozak /* $NetBSD: wctype.h,v 1.5 2003/03/02 22:18:11 tshiozak 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.2 itojun #include <machine/ansi.h>
36 1.2 itojun
37 1.2 itojun #ifdef _BSD_WINT_T_
38 1.2 itojun typedef _BSD_WINT_T_ wint_t;
39 1.2 itojun #undef _BSD_WINT_T_
40 1.2 itojun #endif
41 1.2 itojun
42 1.5 tshiozak #ifdef _BSD_WCTRANS_T_
43 1.5 tshiozak typedef _BSD_WCTRANS_T_ wctrans_t;
44 1.5 tshiozak #undef _BSD_WCTRANS_T_
45 1.5 tshiozak #endif
46 1.5 tshiozak
47 1.5 tshiozak #ifdef _BSD_WCTYPE_T_
48 1.5 tshiozak typedef _BSD_WCTYPE_T_ wctype_t;
49 1.5 tshiozak #undef _BSD_WCTYPE_T_
50 1.5 tshiozak #endif
51 1.5 tshiozak
52 1.2 itojun #ifndef WEOF
53 1.2 itojun #define WEOF ((wint_t)-1)
54 1.2 itojun #endif
55 1.2 itojun
56 1.2 itojun __BEGIN_DECLS
57 1.2 itojun int iswalnum __P((wint_t));
58 1.2 itojun int iswalpha __P((wint_t));
59 1.2 itojun int iswblank __P((wint_t));
60 1.2 itojun int iswcntrl __P((wint_t));
61 1.2 itojun int iswdigit __P((wint_t));
62 1.2 itojun int iswgraph __P((wint_t));
63 1.2 itojun int iswlower __P((wint_t));
64 1.2 itojun int iswprint __P((wint_t));
65 1.2 itojun int iswpunct __P((wint_t));
66 1.2 itojun int iswspace __P((wint_t));
67 1.2 itojun int iswupper __P((wint_t));
68 1.2 itojun int iswxdigit __P((wint_t));
69 1.5 tshiozak int iswctype __P((wint_t, wctype_t));
70 1.5 tshiozak wint_t towctrans __P((wint_t, wctrans_t));
71 1.2 itojun wint_t towlower __P((wint_t));
72 1.2 itojun wint_t towupper __P((wint_t));
73 1.5 tshiozak wctrans_t wctrans __P((const char *));
74 1.5 tshiozak wctype_t wctype __P((const char *));
75 1.2 itojun __END_DECLS
76 1.2 itojun
77 1.2 itojun #endif /* _WCTYPE_H_ */
78