]> git.ipfire.org Git - thirdparty/gcc.git/blame - libstdc++-v3/config/os/generic/bits/ctype_inline.h
skip stdio_va_list fix if __DJ_va_list found in a header
[thirdparty/gcc.git] / libstdc++-v3 / config / os / generic / bits / ctype_inline.h
CommitLineData
c81a475f
BK
1// Locale support -*- C++ -*-
2
3// Copyright (C) 2000 Free Software Foundation, Inc.
4//
5// This file is part of the GNU ISO C++ Library. This library is free
6// software; you can redistribute it and/or modify it under the
7// terms of the GNU General Public License as published by the
8// Free Software Foundation; either version 2, or (at your option)
9// any later version.
10
11// This library is distributed in the hope that it will be useful,
12// but WITHOUT ANY WARRANTY; without even the implied warranty of
13// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14// GNU General Public License for more details.
15
16// You should have received a copy of the GNU General Public License along
17// with this library; see the file COPYING. If not, write to the Free
18// Software Foundation, 59 Temple Place - Suite 330, Boston, MA 02111-1307,
19// USA.
20
21// As a special exception, you may use this file as part of a free software
22// library without restriction. Specifically, if other files instantiate
23// templates or use macros or inline functions from this file, or you compile
24// this file and link it with other files to produce an executable, this
25// file does not by itself cause the resulting executable to be covered by
26// the GNU General Public License. This exception does not however
27// invalidate any other reasons why the executable file might be covered by
28// the GNU General Public License.
29
30//
31// ISO C++ 14882: 22.1 Locales
32//
33
34// ctype bits to be inlined go here. Non-inlinable (ie virtual do_*)
35// functions go in ctype.cc
36
167ed88f
BK
37// The following definitions are portable, but insanely slow. If one
38// cares at all about performance, then specialized ctype
39// functionality should be added for the native os in question: see
40// the config/os/bits/ctype_*.h files.
41
c81a475f
BK
42 bool
43 ctype<char>::
44 is(mask __m, char __c) const throw()
167ed88f
BK
45 {
46 bool __ret = false;
47 switch (__m)
48 {
49 case space:
50 __ret = isspace(__c);
51 break;
52 case print:
53 __ret = isprint(__c);
54 break;
55 case cntrl:
56 __ret = iscntrl(__c);
57 break;
58 case upper:
59 __ret = isupper(__c);
60 break;
61 case lower:
62 __ret = islower(__c);
63 break;
64 case alpha:
65 __ret = isalpha(__c);
66 break;
67 case digit:
68 __ret = isdigit(__c);
69 break;
70 case punct:
71 __ret = ispunct(__c);
72 break;
73 case xdigit:
74 __ret = isxdigit(__c);
75 break;
76 case alnum:
77 __ret = isalnum(__c);
78 break;
79 case graph:
80 __ret = isgraph(__c);
81 break;
82 default:
83 break;
84 }
85 return __ret;
86 }
87
c81a475f
BK
88 const char*
89 ctype<char>::
90 is(const char* __low, const char* __high, mask* __vec) const throw()
91 {
92 while (__low < __high)
93 *__vec++ = _M_table[(unsigned char)(*__low++)];
94 return __high;
95 }
96
97 const char*
98 ctype<char>::
99 scan_is(mask __m, const char* __low, const char* __high) const throw()
100 {
101 while (__low < __high && !this->is(__m, *__low))
102 ++__low;
103 return __low;
104 }
105
106 const char*
107 ctype<char>::
108 scan_not(mask __m, const char* __low, const char* __high) const throw()
109 {
110 while (__low < __high && this->is(__m, *__low) != 0)
111 ++__low;
112 return __low;
113 }
114
115
116
117
118