]> gcc.gnu.org Git - gcc.git/blame - libstdc++-v3/config/os/hpux/ctype_noninline.h
Update Copyright years for files modified in 2010.
[gcc.git] / libstdc++-v3 / config / os / hpux / ctype_noninline.h
CommitLineData
598730fe
JL
1// Locale support -*- C++ -*-
2
d652f226 3// Copyright (C) 1997, 1998, 1999, 2000, 2001, 2002, 2009, 2010
aefb3380 4// Free Software Foundation, Inc.
598730fe
JL
5//
6// This file is part of the GNU ISO C++ Library. This library is free
7// software; you can redistribute it and/or modify it under the
8// terms of the GNU General Public License as published by the
748086b7 9// Free Software Foundation; either version 3, or (at your option)
598730fe
JL
10// any later version.
11
12// This library is distributed in the hope that it will be useful,
13// but WITHOUT ANY WARRANTY; without even the implied warranty of
14// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15// GNU General Public License for more details.
16
748086b7
JJ
17// Under Section 7 of GPL version 3, you are granted additional
18// permissions described in the GCC Runtime Library Exception, version
19// 3.1, as published by the Free Software Foundation.
20
21// You should have received a copy of the GNU General Public License and
22// a copy of the GCC Runtime Library Exception along with this program;
23// see the files COPYING3 and COPYING.RUNTIME respectively. If not, see
24// <http://www.gnu.org/licenses/>.
598730fe 25
f910786b 26/** @file bits/ctype_noninline.h
143c27b0 27 * This is an internal header file, included by other library headers.
f910786b 28 * Do not attempt to use it directly. @headername{locale}
143c27b0
BK
29 */
30
598730fe
JL
31//
32// ISO C++ 14882: 22.1 Locales
33//
34
35// Information as gleaned from /usr/include/ctype.h
8f7a4015 36
93dbe8d7
BK
37 const ctype_base::mask*
38 ctype<char>::classic_table() throw()
ff81da23 39 { return __SB_masks; }
93dbe8d7 40
9e5c7dba
BK
41 ctype<char>::ctype(__c_locale, const mask* __table, bool __del,
42 size_t __refs)
82c2e3d4 43 : facet(__refs), _M_del(__table != 0 && __del),
8f7a4015
BK
44 _M_toupper(NULL), _M_tolower(NULL),
45 _M_table(__table ? __table : (const mask *) __SB_masks)
3fc63c15
JQ
46 {
47 memset(_M_widen, 0, sizeof(_M_widen));
48 _M_widen_ok = 0;
49 memset(_M_narrow, 0, sizeof(_M_narrow));
50 _M_narrow_ok = 0;
51 }
9e5c7dba 52
4716be24 53 ctype<char>::ctype(const mask* __table, bool __del, size_t __refs)
82c2e3d4 54 : facet(__refs), _M_del(__table != 0 && __del),
8f7a4015
BK
55 _M_toupper(NULL), _M_tolower(NULL),
56 _M_table(__table ? __table : (const mask *) __SB_masks)
3fc63c15
JQ
57 {
58 memset(_M_widen, 0, sizeof(_M_widen));
59 _M_widen_ok = 0;
60 memset(_M_narrow, 0, sizeof(_M_narrow));
61 _M_narrow_ok = 0;
62 }
598730fe
JL
63
64 char
65 ctype<char>::do_toupper(char __c) const
66 { return ::toupper((int) __c); }
67
68 const char*
69 ctype<char>::do_toupper(char* __low, const char* __high) const
70 {
71 while (__low < __high)
72 {
73 *__low = ::toupper((int) *__low);
74 ++__low;
75 }
76 return __high;
77 }
78
79 char
80 ctype<char>::do_tolower(char __c) const
81 { return ::tolower((int) __c); }
82
83 const char*
84 ctype<char>::do_tolower(char* __low, const char* __high) const
85 {
86 while (__low < __high)
87 {
88 *__low = ::tolower((int) *__low);
89 ++__low;
90 }
91 return __high;
92 }
This page took 0.944116 seconds and 5 git commands to generate.