1102782Skan// -*- C++ -*- compatibility header.
2102782Skan
3102782Skan// Copyright (C) 2002 Free Software Foundation, Inc.
4102782Skan//
5102782Skan// This file is part of the GNU ISO C++ Library.  This library is free
6102782Skan// software; you can redistribute it and/or modify it under the
7102782Skan// terms of the GNU General Public License as published by the
8102782Skan// Free Software Foundation; either version 2, or (at your option)
9102782Skan// any later version.
10102782Skan
11102782Skan// This library is distributed in the hope that it will be useful,
12102782Skan// but WITHOUT ANY WARRANTY; without even the implied warranty of
13102782Skan// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14102782Skan// GNU General Public License for more details.
15102782Skan
16102782Skan// You should have received a copy of the GNU General Public License along
17102782Skan// with this library; see the file COPYING.  If not, write to the Free
18169691Skan// Software Foundation, 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,
19102782Skan// USA.
20102782Skan
21102782Skan// As a special exception, you may use this file as part of a free software
22102782Skan// library without restriction.  Specifically, if other files instantiate
23102782Skan// templates or use macros or inline functions from this file, or you compile
24102782Skan// this file and link it with other files to produce an executable, this
25102782Skan// file does not by itself cause the resulting executable to be covered by
26102782Skan// the GNU General Public License.  This exception does not however
27102782Skan// invalidate any other reasons why the executable file might be covered by
28102782Skan// the GNU General Public License.
29102782Skan
30132720Skan#ifndef _GLIBCXX_STRING_H
31132720Skan#define _GLIBCXX_STRING_H 1
32102782Skan
33102782Skan#include <cstring>
34102782Skan
35102782Skanusing std::memcpy;
36102782Skanusing std::memmove;
37102782Skanusing std::strcpy;
38102782Skanusing std::strncpy;
39102782Skanusing std::strcat;
40102782Skanusing std::strncat;
41102782Skanusing std::memcmp;
42102782Skanusing std::strcmp;
43102782Skanusing std::strcoll;
44102782Skanusing std::strncmp;
45102782Skanusing std::strxfrm;
46102782Skanusing std::memchr;
47102782Skanusing std::strchr;
48102782Skanusing std::strcspn;
49102782Skanusing std::strpbrk;
50102782Skanusing std::strrchr;
51102782Skanusing std::strspn;
52102782Skanusing std::strstr;
53102782Skanusing std::strtok;
54102782Skanusing std::memset;
55102782Skanusing std::strerror;
56102782Skanusing std::strlen;
57102782Skan
58132720Skan#endif
59