_ctype.h

Go to the documentation of this file.
00001 /*
00002  * Copyright (c) 1989, 1993
00003  *      The Regents of the University of California.  All rights reserved.
00004  * (c) UNIX System Laboratories, Inc.
00005  * All or some portions of this file are derived from material licensed
00006  * to the University of California by American Telephone and Telegraph
00007  * Co. or Unix System Laboratories, Inc. and are reproduced herein with
00008  * the permission of UNIX System Laboratories, Inc.
00009  *
00010  * This code is derived from software contributed to Berkeley by
00011  * Paul Borman at Krystal Technologies.
00012  *
00013  * Redistribution and use in source and binary forms, with or without
00014  * modification, are permitted provided that the following conditions
00015  * are met:
00016  * 1. Redistributions of source code must retain the above copyright
00017  *    notice, this list of conditions and the following disclaimer.
00018  * 2. Redistributions in binary form must reproduce the above copyright
00019  *    notice, this list of conditions and the following disclaimer in the
00020  *    documentation and/or other materials provided with the distribution.
00021  * 3. All advertising materials mentioning features or use of this software
00022  *    must display the following acknowledgement:
00023  *      This product includes software developed by the University of
00024  *      California, Berkeley and its contributors.
00025  * 4. Neither the name of the University nor the names of its contributors
00026  *    may be used to endorse or promote products derived from this software
00027  *    without specific prior written permission.
00028  *
00029  * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
00030  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
00031  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
00032  * ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
00033  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
00034  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
00035  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
00036  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
00037  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
00038  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
00039  * SUCH DAMAGE.
00040  *
00041  * From @(#)ctype.h     8.4 (Berkeley) 1/21/94
00042  * From FreeBSD: src/include/ctype.h,v 1.27 2004/06/23 07:11:39 tjr Exp
00043  * $FreeBSD: src/include/_ctype.h,v 1.30 2004/08/21 07:00:40 tjr Exp $
00044  *
00045  *  © Portions copyright (c) 2006 Nokia Corporation.
00046  * © Portions copyright (c) 2007 Symbian Software Ltd. All rights reserved.
00047  */
00048 
00049 #ifndef __CTYPE_H_
00050 #define __CTYPE_H_
00051 
00052 #include <sys/cdefs.h>
00053 #include <sys/_types.h>
00054 
00055 #ifdef __SYMBIAN32__
00056 #include <_ansi.h>
00057 
00058 #ifdef __cplusplus
00059 extern "C" {
00060 #endif
00061 // __SYMBIAN32__
00062 #endif
00063 
00064 #define _CTYPE_A        0x00000100L             /* Alpha */
00065 #define _CTYPE_C        0x00000200L             /* Control */
00066 #define _CTYPE_D        0x00000400L             /* Digit */
00067 #define _CTYPE_G        0x00000800L             /* Graph */
00068 #define _CTYPE_L        0x00001000L             /* Lower */
00069 #define _CTYPE_P        0x00002000L             /* Punct */
00070 #define _CTYPE_S        0x00004000L             /* Space */
00071 #define _CTYPE_U        0x00008000L             /* Upper */
00072 #define _CTYPE_X        0x00010000L             /* X digit */
00073 #define _CTYPE_B        0x00020000L             /* Blank */
00074 #define _CTYPE_R        0x00040000L             /* Print */
00075 #define _CTYPE_I        0x00080000L             /* Ideogram */
00076 #define _CTYPE_T        0x00100000L             /* Special */
00077 #define _CTYPE_Q        0x00200000L             /* Phonogram */
00078 #define _CTYPE_SW0      0x20000000L             /* 0 width character */
00079 #define _CTYPE_SW1      0x40000000L             /* 1 width character */
00080 #define _CTYPE_SW2      0x80000000L             /* 2 width character */
00081 #define _CTYPE_SW3      0xc0000000L             /* 3 width character */
00082 #define _CTYPE_SWM      0xe0000000L             /* Mask for screen width data */
00083 #define _CTYPE_SWS      30                      /* Bits to shift to get width */
00084 
00085 
00086 #ifdef __SYMBIAN32__
00087 #ifdef __cplusplus
00088 }
00089 #endif
00090 //__SYMBIAN32__
00091 #endif
00092 
00093 #endif /* !__CTYPE_H_ */

Copyright © Nokia Corporation 2001-2008
Back to top