wctype.h revision 1.2 1 1.2 itojun /* $NetBSD: wctype.h,v 1.2 2000/12/21 05:40:56 itojun 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.2 itojun #ifndef WEOF
43 1.2 itojun #define WEOF ((wint_t)-1)
44 1.2 itojun #endif
45 1.2 itojun
46 1.2 itojun __BEGIN_DECLS
47 1.2 itojun int iswalnum __P((wint_t));
48 1.2 itojun int iswalpha __P((wint_t));
49 1.2 itojun int iswblank __P((wint_t));
50 1.2 itojun int iswcntrl __P((wint_t));
51 1.2 itojun int iswdigit __P((wint_t));
52 1.2 itojun int iswgraph __P((wint_t));
53 1.2 itojun int iswlower __P((wint_t));
54 1.2 itojun int iswprint __P((wint_t));
55 1.2 itojun int iswpunct __P((wint_t));
56 1.2 itojun int iswspace __P((wint_t));
57 1.2 itojun int iswupper __P((wint_t));
58 1.2 itojun int iswxdigit __P((wint_t));
59 1.2 itojun wint_t towlower __P((wint_t));
60 1.2 itojun wint_t towupper __P((wint_t));
61 1.2 itojun __END_DECLS
62 1.2 itojun
63 1.2 itojun #endif /* _WCTYPE_H_ */
64