Home | History | Annotate | Line # | Download | only in include
wctype.h revision 1.7
      1  1.7   tnozaki /*	$NetBSD: wctype.h,v 1.7 2010/03/27 22:14:09 tnozaki 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.7   tnozaki #include <sys/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.6     perry int	iswalnum(wint_t);
     58  1.6     perry int	iswalpha(wint_t);
     59  1.6     perry int	iswblank(wint_t);
     60  1.6     perry int	iswcntrl(wint_t);
     61  1.6     perry int	iswdigit(wint_t);
     62  1.6     perry int	iswgraph(wint_t);
     63  1.6     perry int	iswlower(wint_t);
     64  1.6     perry int	iswprint(wint_t);
     65  1.6     perry int	iswpunct(wint_t);
     66  1.6     perry int	iswspace(wint_t);
     67  1.6     perry int	iswupper(wint_t);
     68  1.6     perry int	iswxdigit(wint_t);
     69  1.6     perry int	iswctype(wint_t, wctype_t);
     70  1.6     perry wint_t	towctrans(wint_t, wctrans_t);
     71  1.6     perry wint_t	towlower(wint_t);
     72  1.6     perry wint_t	towupper(wint_t);
     73  1.6     perry wctrans_t wctrans(const char *);
     74  1.6     perry wctype_t wctype(const char *);
     75  1.2    itojun __END_DECLS
     76  1.2    itojun 
     77  1.2    itojun #endif		/* _WCTYPE_H_ */
     78