]> git.saurik.com Git - apple/xnu.git/blame - osfmk/libsa/ctype.h
xnu-344.49.tar.gz
[apple/xnu.git] / osfmk / libsa / ctype.h
CommitLineData
1c79356b
A
1/*
2 * Copyright (c) 2000 Apple Computer, Inc. All rights reserved.
3 *
4 * @APPLE_LICENSE_HEADER_START@
5 *
43866e37 6 * Copyright (c) 1999-2003 Apple Computer, Inc. All Rights Reserved.
1c79356b 7 *
43866e37
A
8 * This file contains Original Code and/or Modifications of Original Code
9 * as defined in and that are subject to the Apple Public Source License
10 * Version 2.0 (the 'License'). You may not use this file except in
11 * compliance with the License. Please obtain a copy of the License at
12 * http://www.opensource.apple.com/apsl/ and read it before using this
13 * file.
14 *
15 * The Original Code and all software distributed under the License are
16 * distributed on an 'AS IS' basis, WITHOUT WARRANTY OF ANY KIND, EITHER
1c79356b
A
17 * EXPRESS OR IMPLIED, AND APPLE HEREBY DISCLAIMS ALL SUCH WARRANTIES,
18 * INCLUDING WITHOUT LIMITATION, ANY WARRANTIES OF MERCHANTABILITY,
43866e37
A
19 * FITNESS FOR A PARTICULAR PURPOSE, QUIET ENJOYMENT OR NON-INFRINGEMENT.
20 * Please see the License for the specific language governing rights and
21 * limitations under the License.
1c79356b
A
22 *
23 * @APPLE_LICENSE_HEADER_END@
24 */
25/*
26 * @OSF_COPYRIGHT@
27 *
28 */
29/*
30 * HISTORY
31 *
32 * Revision 1.1.1.1 1998/09/22 21:05:51 wsanchez
33 * Import of Mac OS X kernel (~semeria)
34 *
35 * Revision 1.1.1.1 1998/03/07 02:25:35 wsanchez
36 * Import of OSF Mach kernel (~mburg)
37 *
38 * Revision 1.1.2.1 1996/09/17 16:56:20 bruel
39 * created from standalone mach servers.
40 * [96/09/17 bruel]
41 *
42 * $EndLog$
43 */
44
45#ifndef _CTYPE_H_
46#define _CTYPE_H_
47
48extern int isalpha(int);
49extern int isalnum(int);
50extern int iscntrl(int);
51extern int isdigit(int);
52extern int isgraph(int);
53extern int islower(int);
54extern int isprint(int);
55extern int ispunct(int);
56extern int isspace(int);
57extern int isupper(int);
58extern int isxdigit(int);
59extern int toupper(int);
60extern int tolower(int);
61
62extern int isascii(int);
63extern int toascii(int);
64
65extern int (_toupper)(int);
66extern int (_tolower)(int);
67
68#endif /* _CTYPE_H_ */