ctype_noninline.h revision 132720
1117397Skan// Locale support -*- C++ -*-
2117397Skan
3132720Skan// Copyright (C) 2000, 2001, 2002, 2003 Free Software Foundation, Inc.
4117397Skan//
5117397Skan// This file is part of the GNU ISO C++ Library.  This library is free
6117397Skan// software; you can redistribute it and/or modify it under the
7117397Skan// terms of the GNU General Public License as published by the
8117397Skan// Free Software Foundation; either version 2, or (at your option)
9117397Skan// any later version.
10117397Skan
11117397Skan// This library is distributed in the hope that it will be useful,
12117397Skan// but WITHOUT ANY WARRANTY; without even the implied warranty of
13117397Skan// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14117397Skan// GNU General Public License for more details.
15117397Skan
16117397Skan// You should have received a copy of the GNU General Public License along
17117397Skan// with this library; see the file COPYING.  If not, write to the Free
18117397Skan// Software Foundation, 59 Temple Place - Suite 330, Boston, MA 02111-1307,
19117397Skan// USA.
20117397Skan
21117397Skan// As a special exception, you may use this file as part of a free software
22117397Skan// library without restriction.  Specifically, if other files instantiate
23117397Skan// templates or use macros or inline functions from this file, or you compile
24117397Skan// this file and link it with other files to produce an executable, this
25117397Skan// file does not by itself cause the resulting executable to be covered by
26117397Skan// the GNU General Public License.  This exception does not however
27117397Skan// invalidate any other reasons why the executable file might be covered by
28117397Skan// the GNU General Public License.
29117397Skan
30117397Skan//
31117397Skan// ISO C++ 14882: 22.1  Locales
32117397Skan//
33117397Skan
34117397Skan// Information as gleaned from /usr/include/ctype.h
35132720Skan
36132720Skan  extern "C" const u_int8_t _C_ctype_[];
37132720Skan
38117397Skan  const ctype_base::mask*
39117397Skan  ctype<char>::classic_table() throw()
40132720Skan  { return _C_ctype_ + 1; }
41117397Skan
42117397Skan  ctype<char>::ctype(__c_locale, const mask* __table, bool __del,
43117397Skan		     size_t __refs)
44132720Skan  : facet(__refs), _M_del(__table != 0 && __del),
45132720Skan  _M_toupper(NULL), _M_tolower(NULL),
46132720Skan  _M_table(__table ? __table : classic_table())
47132720Skan  {
48132720Skan    memset(_M_widen, 0, sizeof(_M_widen));
49132720Skan    _M_widen_ok = 0;
50132720Skan    memset(_M_narrow, 0, sizeof(_M_narrow));
51132720Skan    _M_narrow_ok = 0;
52132720Skan  }
53117397Skan
54117397Skan  ctype<char>::ctype(const mask* __table, bool __del, size_t __refs)
55132720Skan  : facet(__refs), _M_del(__table != 0 && __del),
56132720Skan  _M_toupper(NULL), _M_tolower(NULL),
57132720Skan  _M_table(__table ? __table : classic_table())
58132720Skan  {
59132720Skan    memset(_M_widen, 0, sizeof(_M_widen));
60132720Skan    _M_widen_ok = 0;
61132720Skan    memset(_M_narrow, 0, sizeof(_M_narrow));
62132720Skan    _M_narrow_ok = 0;
63132720Skan  }
64117397Skan
65117397Skan  char
66117397Skan  ctype<char>::do_toupper(char __c) const
67117397Skan  { return ::toupper((int) __c); }
68117397Skan
69117397Skan  const char*
70117397Skan  ctype<char>::do_toupper(char* __low, const char* __high) const
71117397Skan  {
72117397Skan    while (__low < __high)
73117397Skan      {
74117397Skan	*__low = ::toupper((int) *__low);
75117397Skan	++__low;
76117397Skan      }
77117397Skan    return __high;
78117397Skan  }
79117397Skan
80117397Skan  char
81117397Skan  ctype<char>::do_tolower(char __c) const
82117397Skan  { return ::tolower((int) __c); }
83117397Skan
84117397Skan  const char*
85117397Skan  ctype<char>::do_tolower(char* __low, const char* __high) const
86117397Skan  {
87117397Skan    while (__low < __high)
88117397Skan      {
89117397Skan	*__low = ::tolower((int) *__low);
90117397Skan	++__low;
91117397Skan      }
92117397Skan    return __high;
93117397Skan  }
94