]> CyberLeo.Net >> Repos - FreeBSD/releng/8.0.git/blob - include/ctype.h
Fix a race condition exists in the OpenSSL TLS server extension code and
[FreeBSD/releng/8.0.git] / include / ctype.h
1 /*
2  * Copyright (c) 1989, 1993
3  *      The Regents of the University of California.  All rights reserved.
4  * (c) UNIX System Laboratories, Inc.
5  * All or some portions of this file are derived from material licensed
6  * to the University of California by American Telephone and Telegraph
7  * Co. or Unix System Laboratories, Inc. and are reproduced herein with
8  * the permission of UNIX System Laboratories, Inc.
9  *
10  * This code is derived from software contributed to Berkeley by
11  * Paul Borman at Krystal Technologies.
12  *
13  * Redistribution and use in source and binary forms, with or without
14  * modification, are permitted provided that the following conditions
15  * are met:
16  * 1. Redistributions of source code must retain the above copyright
17  *    notice, this list of conditions and the following disclaimer.
18  * 2. Redistributions in binary form must reproduce the above copyright
19  *    notice, this list of conditions and the following disclaimer in the
20  *    documentation and/or other materials provided with the distribution.
21  * 3. All advertising materials mentioning features or use of this software
22  *    must display the following acknowledgement:
23  *      This product includes software developed by the University of
24  *      California, Berkeley and its contributors.
25  * 4. Neither the name of the University nor the names of its contributors
26  *    may be used to endorse or promote products derived from this software
27  *    without specific prior written permission.
28  *
29  * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
30  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
31  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
32  * ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
33  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
34  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
35  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
36  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
37  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
38  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
39  * SUCH DAMAGE.
40  *
41  *      @(#)ctype.h     8.4 (Berkeley) 1/21/94
42  *      $FreeBSD$
43  */
44
45 #ifndef _CTYPE_H_
46 #define _CTYPE_H_
47
48 #include <sys/cdefs.h>
49 #include <sys/_types.h>
50 #include <_ctype.h>
51
52 __BEGIN_DECLS
53 int     isalnum(int);
54 int     isalpha(int);
55 int     iscntrl(int);
56 int     isdigit(int);
57 int     isgraph(int);
58 int     islower(int);
59 int     isprint(int);
60 int     ispunct(int);
61 int     isspace(int);
62 int     isupper(int);
63 int     isxdigit(int);
64 int     tolower(int);
65 int     toupper(int);
66
67 #if __XSI_VISIBLE
68 int     isascii(int);
69 int     toascii(int);
70 #endif
71
72 #if __ISO_C_VISIBLE >= 1999
73 int     isblank(int);
74 #endif
75
76 #if __BSD_VISIBLE
77 int     digittoint(int);
78 int     ishexnumber(int);
79 int     isideogram(int);
80 int     isnumber(int);
81 int     isphonogram(int);
82 int     isrune(int);
83 int     isspecial(int);
84 #endif
85 __END_DECLS
86
87 #define isalnum(c)      __sbistype((c), _CTYPE_A|_CTYPE_D)
88 #define isalpha(c)      __sbistype((c), _CTYPE_A)
89 #define iscntrl(c)      __sbistype((c), _CTYPE_C)
90 #define isdigit(c)      __isctype((c), _CTYPE_D) /* ANSI -- locale independent */
91 #define isgraph(c)      __sbistype((c), _CTYPE_G)
92 #define islower(c)      __sbistype((c), _CTYPE_L)
93 #define isprint(c)      __sbistype((c), _CTYPE_R)
94 #define ispunct(c)      __sbistype((c), _CTYPE_P)
95 #define isspace(c)      __sbistype((c), _CTYPE_S)
96 #define isupper(c)      __sbistype((c), _CTYPE_U)
97 #define isxdigit(c)     __isctype((c), _CTYPE_X) /* ANSI -- locale independent */
98 #define tolower(c)      __sbtolower(c)
99 #define toupper(c)      __sbtoupper(c)
100
101 #if __XSI_VISIBLE
102 /*
103  * POSIX.1-2001 specifies _tolower() and _toupper() to be macros equivalent to
104  * tolower() and toupper() respectively, minus extra checking to ensure that
105  * the argument is a lower or uppercase letter respectively.  We've chosen to
106  * implement these macros with the same error checking as tolower() and
107  * toupper() since this doesn't violate the specification itself, only its
108  * intent.  We purposely leave _tolower() and _toupper() undocumented to
109  * discourage their use.
110  *
111  * XXX isascii() and toascii() should similarly be undocumented.
112  */
113 #define _tolower(c)     __sbtolower(c)
114 #define _toupper(c)     __sbtoupper(c)
115 #define isascii(c)      (((c) & ~0x7F) == 0)
116 #define toascii(c)      ((c) & 0x7F)
117 #endif
118
119 #if __ISO_C_VISIBLE >= 1999
120 #define isblank(c)      __sbistype((c), _CTYPE_B)
121 #endif
122
123 #if __BSD_VISIBLE
124 #define digittoint(c)   __sbmaskrune((c), 0xFF)
125 #define ishexnumber(c)  __sbistype((c), _CTYPE_X)
126 #define isideogram(c)   __sbistype((c), _CTYPE_I)
127 #define isnumber(c)     __sbistype((c), _CTYPE_D)
128 #define isphonogram(c)  __sbistype((c), _CTYPE_Q)
129 #define isrune(c)       __sbistype((c), 0xFFFFFF00L)
130 #define isspecial(c)    __sbistype((c), _CTYPE_T)
131 #endif
132
133 #endif /* !_CTYPE_H_ */