]> git.ipfire.org Git - thirdparty/binutils-gdb.git/blame - gdb/gdb_string.h
Update FSF address.
[thirdparty/binutils-gdb.git] / gdb / gdb_string.h
CommitLineData
2b576293
C
1/* Portable <string.h>
2 Copyright 1995 Free Software Foundation, Inc.
3
4This file is part of GDB.
5
6This program is free software; you can redistribute it and/or modify
7it under the terms of the GNU General Public License as published by
8the Free Software Foundation; either version 2 of the License, or
9(at your option) any later version.
10
11This program is distributed in the hope that it will be useful,
12but WITHOUT ANY WARRANTY; without even the implied warranty of
13MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14GNU General Public License for more details.
15
16You should have received a copy of the GNU General Public License
17along with this program; if not, write to the Free Software
6c9638b4 18Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */
2b576293
C
19
20#if !defined(GDB_STRING_H)
21#define GDB_STRING_H
22
23#ifdef STDC_HEADERS
24#include <string.h>
25#else
26# ifdef HAVE_STRING_H
27# include <string.h>
28# else
29# include <strings.h>
30# endif
31extern char *strchr();
32extern char *strrchr();
33extern char *strstr();
34extern char *strtok();
35extern char *strerror();
36# ifdef HAVE_MEMORY_H
37# include <memory.h>
38# else
39extern void *memset();
40extern void *memcpy();
41extern void *memmove();
42extern int memcmp();
43# endif
44#endif
45
46extern char *strdup();
47
48#endif /* !defined(GDB_STRING_H) */