OLD | NEW |
| (Empty) |
1 /* | |
2 * Copyright (C) 2007 Apple Inc. All rights reserved. | |
3 * | |
4 * Redistribution and use in source and binary forms, with or without | |
5 * modification, are permitted provided that the following conditions | |
6 * are met: | |
7 * | |
8 * 1. Redistributions of source code must retain the above copyright | |
9 * notice, this list of conditions and the following disclaimer. | |
10 * 2. Redistributions in binary form must reproduce the above copyright | |
11 * notice, this list of conditions and the following disclaimer in the | |
12 * documentation and/or other materials provided with the distribution. | |
13 * 3. Neither the name of Apple Computer, Inc. ("Apple") nor the names of | |
14 * its contributors may be used to endorse or promote products derived | |
15 * from this software without specific prior written permission. | |
16 * | |
17 * THIS SOFTWARE IS PROVIDED BY APPLE AND ITS CONTRIBUTORS "AS IS" AND ANY | |
18 * EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED | |
19 * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE | |
20 * DISCLAIMED. IN NO EVENT SHALL APPLE OR ITS CONTRIBUTORS BE LIABLE FOR ANY | |
21 * DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES | |
22 * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; | |
23 * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND | |
24 * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT | |
25 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF | |
26 * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. | |
27 */ | |
28 | |
29 #ifndef WTF_DisallowCType_h | |
30 #define WTF_DisallowCType_h | |
31 | |
32 // The behavior of many of the functions in the <ctype.h> header is dependent | |
33 // on the current locale. But almost all uses of these functions are for | |
34 // locale-independent, ASCII-specific purposes. In WebKit code we use our own | |
35 // ASCII-specific functions instead. This header makes sure we get a compile-tim
e | |
36 // error if we use one of the <ctype.h> functions by accident. | |
37 | |
38 // this breaks compilation of <QFontDatabase>, at least, so turn it off for now | |
39 // Also generates errors on wx on Windows, presumably because these functions | |
40 // are used from wx headers. On GTK+ for Mac many GTK+ files include <libintl.h> | |
41 // or <glib/gi18n-lib.h>, which in turn include <xlocale/_ctype.h> which uses | |
42 // isacii(). | |
43 #include <wtf/Platform.h> | |
44 #if !PLATFORM(QT) && !PLATFORM(WX) && !PLATFORM(CHROMIUM) && !(OS(DARWIN) && PLA
TFORM(GTK)) && !OS(QNX) && !defined(_LIBCPP_VERSION) | |
45 | |
46 #include <ctype.h> | |
47 | |
48 #undef isalnum | |
49 #undef isalpha | |
50 #undef isascii | |
51 #undef isblank | |
52 #undef iscntrl | |
53 #undef isdigit | |
54 #undef isgraph | |
55 #undef islower | |
56 #undef isprint | |
57 #undef ispunct | |
58 #undef isspace | |
59 #undef isupper | |
60 #undef isxdigit | |
61 #undef toascii | |
62 #undef tolower | |
63 #undef toupper | |
64 | |
65 #define isalnum isalnum_WTF_Please_use_ASCIICType_instead_of_ctype_see_comment_i
n_ASCIICType_h | |
66 #define isalpha isalpha_WTF_Please_use_ASCIICType_instead_of_ctype_see_comment_i
n_ASCIICType_h | |
67 #define isascii isascii_WTF_Please_use_ASCIICType_instead_of_ctype_see_comment_i
n_ASCIICType_h | |
68 #define isblank isblank_WTF_Please_use_ASCIICType_instead_of_ctype_see_comment_i
n_ASCIICType_h | |
69 #define iscntrl iscntrl_WTF_Please_use_ASCIICType_instead_of_ctype_see_comment_i
n_ASCIICType_h | |
70 #define isdigit isdigit_WTF_Please_use_ASCIICType_instead_of_ctype_see_comment_i
n_ASCIICType_h | |
71 #define isgraph isgraph_WTF_Please_use_ASCIICType_instead_of_ctype_see_comment_i
n_ASCIICType_h | |
72 #define islower islower_WTF_Please_use_ASCIICType_instead_of_ctype_see_comment_i
n_ASCIICType_h | |
73 #define isprint isprint_WTF_Please_use_ASCIICType_instead_of_ctype_see_comment_i
n_ASCIICType_h | |
74 #define ispunct ispunct_WTF_Please_use_ASCIICType_instead_of_ctype_see_comment_i
n_ASCIICType_h | |
75 #define isspace isspace_WTF_Please_use_ASCIICType_instead_of_ctype_see_comment_i
n_ASCIICType_h | |
76 #define isupper isupper_WTF_Please_use_ASCIICType_instead_of_ctype_see_comment_i
n_ASCIICType_h | |
77 #define isxdigit isxdigit_WTF_Please_use_ASCIICType_instead_of_ctype_see_comment
_in_ASCIICType_h | |
78 #define toascii toascii_WTF_Please_use_ASCIICType_instead_of_ctype_see_comment_i
n_ASCIICType_h | |
79 #define tolower tolower_WTF_Please_use_ASCIICType_instead_of_ctype_see_comment_i
n_ASCIICType_h | |
80 #define toupper toupper_WTF_Please_use_ASCIICType_instead_of_ctype_see_comment_i
n_ASCIICType_h | |
81 | |
82 #endif | |
83 | |
84 #endif | |
OLD | NEW |