gcc50/csu: Skip depends step to avoid possible race
[dragonfly.git] / contrib / gcc-4.4 / libstdc++-v3 / config / os / bsd / dragonfly / ctype_noninline.h
1 // Locale support -*- C++ -*-
2
3 // Copyright (C) 1997, 1998, 1999, 2000, 2001, 2002, 2009, 2010
4 //  Free Software Foundation, Inc.
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
9 // Free Software Foundation; either version 3, or (at your option)
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
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/>.
25
26 /** @file bits/ctype_noninline.h
27  *  This is an internal header file, included by other library headers.
28  *  Do not attempt to use it directly. @headername{locale}
29  */
30
31 //
32 // ISO C++ 14882: 22.1  Locales
33 //
34
35 // Information as gleaned from /usr/include/ctype.h
36
37 #ifndef _CTYPE_S
38   extern "C" const __uint16_t __libc_C_ctype_[];
39 #endif
40
41   const ctype_base::mask*
42   ctype<char>::classic_table() throw()
43 #ifdef _CTYPE_S
44   { return 0; }
45 #else
46   { return __libc_C_ctype_ + 1; }
47 #endif
48
49   ctype<char>::ctype(__c_locale, const mask* __table, bool __del,
50                      size_t __refs)
51   : facet(__refs), _M_del(__table != 0 && __del),
52   _M_toupper(NULL), _M_tolower(NULL),
53   _M_table(__table ? __table : classic_table())
54   {
55     memset(_M_widen, 0, sizeof(_M_widen));
56     _M_widen_ok = 0;
57     memset(_M_narrow, 0, sizeof(_M_narrow));
58     _M_narrow_ok = 0;
59   }
60
61   ctype<char>::ctype(const mask* __table, bool __del, size_t __refs)
62   : facet(__refs), _M_del(__table != 0 && __del),
63   _M_toupper(NULL), _M_tolower(NULL),
64   _M_table(__table ? __table : classic_table())
65   {
66     memset(_M_widen, 0, sizeof(_M_widen));
67     _M_widen_ok = 0;
68     memset(_M_narrow, 0, sizeof(_M_narrow));
69     _M_narrow_ok = 0;
70   }
71
72   char
73   ctype<char>::do_toupper(char __c) const
74   { return ::toupper((int) __c); }
75
76   const char*
77   ctype<char>::do_toupper(char* __low, const char* __high) const
78   {
79     while (__low < __high)
80       {
81         *__low = ::toupper((int) *__low);
82         ++__low;
83       }
84     return __high;
85   }
86
87   char
88   ctype<char>::do_tolower(char __c) const
89   { return ::tolower((int) __c); }
90
91   const char*
92   ctype<char>::do_tolower(char* __low, const char* __high) const
93   {
94     while (__low < __high)
95       {
96         *__low = ::tolower((int) *__low);
97         ++__low;
98       }
99     return __high;
100   }