1ca6500fcSAlexander Kabaev // -*- C++ -*- compatibility header.
2ca6500fcSAlexander Kabaev 
3ca6500fcSAlexander Kabaev // Copyright (C) 2002 Free Software Foundation, Inc.
4ca6500fcSAlexander Kabaev //
5ca6500fcSAlexander Kabaev // This file is part of the GNU ISO C++ Library.  This library is free
6ca6500fcSAlexander Kabaev // software; you can redistribute it and/or modify it under the
7ca6500fcSAlexander Kabaev // terms of the GNU General Public License as published by the
8ca6500fcSAlexander Kabaev // Free Software Foundation; either version 2, or (at your option)
9ca6500fcSAlexander Kabaev // any later version.
10ca6500fcSAlexander Kabaev 
11ca6500fcSAlexander Kabaev // This library is distributed in the hope that it will be useful,
12ca6500fcSAlexander Kabaev // but WITHOUT ANY WARRANTY; without even the implied warranty of
13ca6500fcSAlexander Kabaev // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14ca6500fcSAlexander Kabaev // GNU General Public License for more details.
15ca6500fcSAlexander Kabaev 
16ca6500fcSAlexander Kabaev // You should have received a copy of the GNU General Public License along
17ca6500fcSAlexander Kabaev // with this library; see the file COPYING.  If not, write to the Free
18*f8a1b7d9SAlexander Kabaev // Software Foundation, 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,
19ca6500fcSAlexander Kabaev // USA.
20ca6500fcSAlexander Kabaev 
21ca6500fcSAlexander Kabaev // As a special exception, you may use this file as part of a free software
22ca6500fcSAlexander Kabaev // library without restriction.  Specifically, if other files instantiate
23ca6500fcSAlexander Kabaev // templates or use macros or inline functions from this file, or you compile
24ca6500fcSAlexander Kabaev // this file and link it with other files to produce an executable, this
25ca6500fcSAlexander Kabaev // file does not by itself cause the resulting executable to be covered by
26ca6500fcSAlexander Kabaev // the GNU General Public License.  This exception does not however
27ca6500fcSAlexander Kabaev // invalidate any other reasons why the executable file might be covered by
28ca6500fcSAlexander Kabaev // the GNU General Public License.
29ca6500fcSAlexander Kabaev 
30ffeaf689SAlexander Kabaev #ifndef _GLIBCXX_STRING_H
31ffeaf689SAlexander Kabaev #define _GLIBCXX_STRING_H 1
32ca6500fcSAlexander Kabaev 
33ca6500fcSAlexander Kabaev #include <cstring>
34ca6500fcSAlexander Kabaev 
35ca6500fcSAlexander Kabaev using std::memcpy;
36ca6500fcSAlexander Kabaev using std::memmove;
37ca6500fcSAlexander Kabaev using std::strcpy;
38ca6500fcSAlexander Kabaev using std::strncpy;
39ca6500fcSAlexander Kabaev using std::strcat;
40ca6500fcSAlexander Kabaev using std::strncat;
41ca6500fcSAlexander Kabaev using std::memcmp;
42ca6500fcSAlexander Kabaev using std::strcmp;
43ca6500fcSAlexander Kabaev using std::strcoll;
44ca6500fcSAlexander Kabaev using std::strncmp;
45ca6500fcSAlexander Kabaev using std::strxfrm;
46ca6500fcSAlexander Kabaev using std::memchr;
47ca6500fcSAlexander Kabaev using std::strchr;
48ca6500fcSAlexander Kabaev using std::strcspn;
49ca6500fcSAlexander Kabaev using std::strpbrk;
50ca6500fcSAlexander Kabaev using std::strrchr;
51ca6500fcSAlexander Kabaev using std::strspn;
52ca6500fcSAlexander Kabaev using std::strstr;
53ca6500fcSAlexander Kabaev using std::strtok;
54ca6500fcSAlexander Kabaev using std::memset;
55ca6500fcSAlexander Kabaev using std::strerror;
56ca6500fcSAlexander Kabaev using std::strlen;
57ca6500fcSAlexander Kabaev 
58ca6500fcSAlexander Kabaev #endif
59