Imported readline 6.2, and upstream patch 001.
[deliverable/binutils-gdb.git] / readline / savestring.c
CommitLineData
cc88a640 1/* savestring.c - function version of savestring for backwards compatibility */
c862e87b 2
5bdf8622 3/* Copyright (C) 1998,2003 Free Software Foundation, Inc.
c862e87b 4
cc88a640
JK
5 This file is part of the GNU Readline Library (Readline), a library
6 for reading lines of text with interactive input and history editing.
c862e87b 7
cc88a640
JK
8 Readline is free software: you can redistribute it and/or modify
9 it under the terms of the GNU General Public License as published by
10 the Free Software Foundation, either version 3 of the License, or
c862e87b
JM
11 (at your option) any later version.
12
cc88a640
JK
13 Readline is distributed in the hope that it will be useful,
14 but WITHOUT ANY WARRANTY; without even the implied warranty of
15 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
c862e87b
JM
16 GNU General Public License for more details.
17
cc88a640
JK
18 You should have received a copy of the GNU General Public License
19 along with Readline. If not, see <http://www.gnu.org/licenses/>.
20*/
21
5bdf8622 22#define READLINE_LIBRARY
c862e87b 23
9255ee31
EZ
24#include <config.h>
25#ifdef HAVE_STRING_H
26# include <string.h>
27#endif
28#include "xmalloc.h"
c862e87b
JM
29
30/* Backwards compatibility, now that savestring has been removed from
31 all `public' readline header files. */
32char *
33savestring (s)
9255ee31 34 const char *s;
c862e87b 35{
cc88a640
JK
36 char *ret;
37
38 ret = (char *)xmalloc (strlen (s) + 1);
39 strcpy (ret, s);
40 return ret;
c862e87b 41}
This page took 0.488361 seconds and 4 git commands to generate.