ctype.h revision 90231
11539Srgrimes/*
21539Srgrimes * Copyright (c) 1989, 1993
31539Srgrimes *	The Regents of the University of California.  All rights reserved.
41539Srgrimes * (c) UNIX System Laboratories, Inc.
51539Srgrimes * All or some portions of this file are derived from material licensed
61539Srgrimes * to the University of California by American Telephone and Telegraph
71539Srgrimes * Co. or Unix System Laboratories, Inc. and are reproduced herein with
81539Srgrimes * the permission of UNIX System Laboratories, Inc.
91539Srgrimes *
101539Srgrimes * This code is derived from software contributed to Berkeley by
111539Srgrimes * Paul Borman at Krystal Technologies.
121539Srgrimes *
131539Srgrimes * Redistribution and use in source and binary forms, with or without
141539Srgrimes * modification, are permitted provided that the following conditions
151539Srgrimes * are met:
161539Srgrimes * 1. Redistributions of source code must retain the above copyright
171539Srgrimes *    notice, this list of conditions and the following disclaimer.
181539Srgrimes * 2. Redistributions in binary form must reproduce the above copyright
191539Srgrimes *    notice, this list of conditions and the following disclaimer in the
201539Srgrimes *    documentation and/or other materials provided with the distribution.
211539Srgrimes * 3. All advertising materials mentioning features or use of this software
221539Srgrimes *    must display the following acknowledgement:
231539Srgrimes *	This product includes software developed by the University of
241539Srgrimes *	California, Berkeley and its contributors.
251539Srgrimes * 4. Neither the name of the University nor the names of its contributors
261539Srgrimes *    may be used to endorse or promote products derived from this software
271539Srgrimes *    without specific prior written permission.
281539Srgrimes *
291539Srgrimes * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
301539Srgrimes * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
311539Srgrimes * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
321539Srgrimes * ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
331539Srgrimes * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
341539Srgrimes * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
351539Srgrimes * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
361539Srgrimes * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
371539Srgrimes * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
381539Srgrimes * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
391539Srgrimes * SUCH DAMAGE.
401539Srgrimes *
411539Srgrimes *	@(#)ctype.h	8.4 (Berkeley) 1/21/94
4254746Sphantom *      $FreeBSD: head/include/ctype.h 90231 2002-02-05 06:21:34Z bbraun $
431539Srgrimes */
441539Srgrimes
457655Sbde#ifndef _CTYPE_H_
467655Sbde#define	_CTYPE_H_
471539Srgrimes
487655Sbde/*
497655Sbde * XXX <runetype.h> brings massive namespace pollution (rune_t and struct
507655Sbde * member names).
517655Sbde */
521539Srgrimes#include <runetype.h>
531539Srgrimes
5457035Sobrien#define	_CTYPE_A	0x00000100L		/* Alpha */
5557035Sobrien#define	_CTYPE_C	0x00000200L		/* Control */
5657035Sobrien#define	_CTYPE_D	0x00000400L		/* Digit */
5757035Sobrien#define	_CTYPE_G	0x00000800L		/* Graph */
5857035Sobrien#define	_CTYPE_L	0x00001000L		/* Lower */
5957035Sobrien#define	_CTYPE_P	0x00002000L		/* Punct */
6057035Sobrien#define	_CTYPE_S	0x00004000L		/* Space */
6157035Sobrien#define	_CTYPE_U	0x00008000L		/* Upper */
6257035Sobrien#define	_CTYPE_X	0x00010000L		/* X digit */
6357035Sobrien#define	_CTYPE_B	0x00020000L		/* Blank */
6457035Sobrien#define	_CTYPE_R	0x00040000L		/* Print */
6557035Sobrien#define	_CTYPE_I	0x00080000L		/* Ideogram */
6657035Sobrien#define	_CTYPE_T	0x00100000L		/* Special */
6757035Sobrien#define	_CTYPE_Q	0x00200000L		/* Phonogram */
681539Srgrimes
697655Sbde__BEGIN_DECLS
707655Sbdeint	isalnum __P((int));
717655Sbdeint	isalpha __P((int));
727655Sbdeint	iscntrl __P((int));
737655Sbdeint	isdigit __P((int));
747655Sbdeint	isgraph __P((int));
757655Sbdeint	islower __P((int));
767655Sbdeint	isprint __P((int));
777655Sbdeint	ispunct __P((int));
787655Sbdeint	isspace __P((int));
797655Sbdeint	isupper __P((int));
807655Sbdeint	isxdigit __P((int));
817655Sbdeint	tolower __P((int));
827655Sbdeint	toupper __P((int));
831539Srgrimes
841539Srgrimes#if !defined(_ANSI_SOURCE) && !defined(_POSIX_SOURCE)
8554746Sphantomint	digittoint __P((int));
867655Sbdeint	isascii __P((int));
877655Sbdeint	isblank __P((int));
8854746Sphantomint	ishexnumber __P((int));
8954746Sphantomint	isideogram __P((int));
9054746Sphantomint	isnumber __P((int));
9154746Sphantomint	isphonogram __P((int));
9254746Sphantomint	isrune __P((int));
9354746Sphantomint	isspecial __P((int));
947655Sbdeint	toascii __P((int));
957655Sbde#endif
967655Sbde__END_DECLS
977655Sbde
9857035Sobrien#define	isalnum(c)	__istype((c), _CTYPE_A|_CTYPE_D)
9957035Sobrien#define	isalpha(c)	__istype((c), _CTYPE_A)
10057035Sobrien#define	iscntrl(c)	__istype((c), _CTYPE_C)
10157035Sobrien#define	isdigit(c)	__isctype((c), _CTYPE_D) /* ANSI -- locale independent */
10257035Sobrien#define	isgraph(c)	__istype((c), _CTYPE_G)
10357035Sobrien#define	islower(c)	__istype((c), _CTYPE_L)
10457035Sobrien#define	isprint(c)	__istype((c), _CTYPE_R)
10557035Sobrien#define	ispunct(c)	__istype((c), _CTYPE_P)
10657035Sobrien#define	isspace(c)	__istype((c), _CTYPE_S)
10757035Sobrien#define	isupper(c)	__istype((c), _CTYPE_U)
10857035Sobrien#define	isxdigit(c)	__isctype((c), _CTYPE_X) /* ANSI -- locale independent */
1097655Sbde#define	tolower(c)	__tolower(c)
1107655Sbde#define	toupper(c)	__toupper(c)
1117655Sbde
1127655Sbde#if !defined(_ANSI_SOURCE) && !defined(_POSIX_SOURCE)
11354746Sphantom#define	digittoint(c)	__maskrune((c), 0xFF)
1147655Sbde#define	isascii(c)	(((c) & ~0x7F) == 0)
11557035Sobrien#define	isblank(c)	__istype((c), _CTYPE_B)
11657035Sobrien#define	ishexnumber(c)	__istype((c), _CTYPE_X)
11757035Sobrien#define	isideogram(c)	__istype((c), _CTYPE_I)
11857035Sobrien#define	isnumber(c)	__istype((c), _CTYPE_D)
11957035Sobrien#define	isphonogram(c)	__istype((c), _CTYPE_Q)
1207655Sbde#define	isrune(c)	__istype((c), 0xFFFFFF00L)
12157035Sobrien#define	isspecial(c)	__istype((c), _CTYPE_T)
12254746Sphantom#define	toascii(c)	((c) & 0x7F)
1231539Srgrimes#endif
1241539Srgrimes
12515483Sbde/* See comments in <machine/ansi.h> about _BSD_CT_RUNE_T_. */
1261539Srgrimes__BEGIN_DECLS
12715483Sbdeunsigned long	___runetype __P((_BSD_CT_RUNE_T_));
12815483Sbde_BSD_CT_RUNE_T_	___tolower __P((_BSD_CT_RUNE_T_));
12915483Sbde_BSD_CT_RUNE_T_	___toupper __P((_BSD_CT_RUNE_T_));
1301539Srgrimes__END_DECLS
1311539Srgrimes
1321539Srgrimes/*
1337655Sbde * _EXTERNALIZE_CTYPE_INLINES_ is defined in locale/nomacros.c to tell us
1347655Sbde * to generate code for extern versions of all our inline functions.
1351539Srgrimes */
1367655Sbde#ifdef _EXTERNALIZE_CTYPE_INLINES_
1377655Sbde#define	_USE_CTYPE_INLINE_
1387655Sbde#define	static
1397655Sbde#define	__inline
1401539Srgrimes#endif
1411539Srgrimes
1427655Sbde/*
1437655Sbde * Use inline functions if we are allowed to and the compiler supports them.
1447655Sbde */
1457655Sbde#if !defined(_DONT_USE_CTYPE_INLINE_) && \
1467655Sbde    (defined(_USE_CTYPE_INLINE_) || defined(__GNUC__) || defined(__cplusplus))
1471539Srgrimesstatic __inline int
14829883Sache__maskrune(_BSD_CT_RUNE_T_ _c, unsigned long _f)
1491539Srgrimes{
15029855Sache	return ((_c < 0 || _c >= _CACHED_RUNES) ? ___runetype(_c) :
15129855Sache		_CurrentRuneLocale->runetype[_c]) & _f;
1521539Srgrimes}
1531539Srgrimes
1541539Srgrimesstatic __inline int
15590231Sbbraun__istype(_BSD_CT_RUNE_T_ _c, unsigned long _f)
15690231Sbbraun{
15790231Sbbraun	return (!!__maskrune(_c, _f));
15890231Sbbraun}
15990231Sbbraun
16090231Sbbraunstatic __inline int
16115483Sbde__isctype(_BSD_CT_RUNE_T_ _c, unsigned long _f)
1621539Srgrimes{
16312028Sache	return (_c < 0 || _c >= _CACHED_RUNES) ? 0 :
16429883Sache	       !!(_DefaultRuneLocale.runetype[_c] & _f);
1651539Srgrimes}
1661539Srgrimes
16715483Sbdestatic __inline _BSD_CT_RUNE_T_
16815483Sbde__toupper(_BSD_CT_RUNE_T_ _c)
1691539Srgrimes{
17014813Sache	return (_c < 0 || _c >= _CACHED_RUNES) ? ___toupper(_c) :
17112028Sache	       _CurrentRuneLocale->mapupper[_c];
1721539Srgrimes}
1731539Srgrimes
17415483Sbdestatic __inline _BSD_CT_RUNE_T_
17515483Sbde__tolower(_BSD_CT_RUNE_T_ _c)
1761539Srgrimes{
17714813Sache	return (_c < 0 || _c >= _CACHED_RUNES) ? ___tolower(_c) :
17812028Sache	       _CurrentRuneLocale->maplower[_c];
1791539Srgrimes}
1801539Srgrimes
1817655Sbde#else /* not using inlines */
1821539Srgrimes
1831539Srgrimes__BEGIN_DECLS
18429883Sacheint		__maskrune __P((_BSD_CT_RUNE_T_, unsigned long));
18590231Sbbraunint		__istype  __P((_BSD_CT_RUNE_T_, unsigned long));
18615483Sbdeint		__isctype __P((_BSD_CT_RUNE_T_, unsigned long));
18715483Sbde_BSD_CT_RUNE_T_	__toupper __P((_BSD_CT_RUNE_T_));
18815483Sbde_BSD_CT_RUNE_T_	__tolower __P((_BSD_CT_RUNE_T_));
1891539Srgrimes__END_DECLS
1907655Sbde#endif /* using inlines */
1911539Srgrimes
1921539Srgrimes#endif /* !_CTYPE_H_ */
193