119731d4fSespie // wide string support -*- C++ -*-
219731d4fSespie 
319731d4fSespie // Copyright (C) 1999, 2000, 2001, 2002, 2003, 2004
419731d4fSespie // Free Software Foundation, Inc.
519731d4fSespie //
619731d4fSespie // This file is part of the GNU ISO C++ Library.  This library is free
719731d4fSespie // software; you can redistribute it and/or modify it under the
819731d4fSespie // terms of the GNU General Public License as published by the
919731d4fSespie // Free Software Foundation; either version 2, or (at your option)
1019731d4fSespie // any later version.
1119731d4fSespie 
1219731d4fSespie // This library is distributed in the hope that it will be useful,
1319731d4fSespie // but WITHOUT ANY WARRANTY; without even the implied warranty of
1419731d4fSespie // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
1519731d4fSespie // GNU General Public License for more details.
1619731d4fSespie 
1719731d4fSespie // You should have received a copy of the GNU General Public License along
1819731d4fSespie // with this library; see the file COPYING.  If not, write to the Free
1919731d4fSespie // Software Foundation, 59 Temple Place - Suite 330, Boston, MA 02111-1307,
2019731d4fSespie // USA.
2119731d4fSespie 
2219731d4fSespie // As a special exception, you may use this file as part of a free software
2319731d4fSespie // library without restriction.  Specifically, if other files instantiate
2419731d4fSespie // templates or use macros or inline functions from this file, or you compile
2519731d4fSespie // this file and link it with other files to produce an executable, this
2619731d4fSespie // file does not by itself cause the resulting executable to be covered by
2719731d4fSespie // the GNU General Public License.  This exception does not however
2819731d4fSespie // invalidate any other reasons why the executable file might be covered by
2919731d4fSespie // the GNU General Public License.
3019731d4fSespie 
3119731d4fSespie //
3219731d4fSespie // ISO C++ 14882: 21  Strings library
3319731d4fSespie //
3419731d4fSespie 
3503a78d15Sespie #include <bits/c++config.h>
3603a78d15Sespie 
37*c2fb3212Sespie #if defined(_GLIBCPP_USE_WCHAR_T) || defined(_GLIBCPP_USE_TYPE_WCHAR_T)
3803a78d15Sespie #define C wchar_t
3903a78d15Sespie #include "string-inst.cc"
4003a78d15Sespie #endif
41