blob: af9853801649a8f1f200a8492c625800edb6e408 [file] [log] [blame]
Jari Aalto31859422009-01-12 13:36:28 +00001/* savestring.c - function version of savestring for backwards compatibility */
Jari Aaltob72432f1999-02-19 17:11:39 +00002
Jari Aaltob80f6442004-07-27 13:29:18 +00003/* Copyright (C) 1998,2003 Free Software Foundation, Inc.
Jari Aaltob72432f1999-02-19 17:11:39 +00004
Jari Aalto31859422009-01-12 13:36:28 +00005 This file is part of the GNU Readline Library (Readline), a library
6 for reading lines of text with interactive input and history editing.
Jari Aaltob72432f1999-02-19 17:11:39 +00007
Jari Aalto31859422009-01-12 13:36:28 +00008 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
Jari Aaltob72432f1999-02-19 17:11:39 +000011 (at your option) any later version.
12
Jari Aalto31859422009-01-12 13:36:28 +000013 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
Jari Aaltob72432f1999-02-19 17:11:39 +000016 GNU General Public License for more details.
17
Jari Aalto31859422009-01-12 13:36:28 +000018 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
Jari Aaltob80f6442004-07-27 13:29:18 +000022#define READLINE_LIBRARY
Jari Aaltob72432f1999-02-19 17:11:39 +000023
Jari Aaltof73dda02001-11-13 17:56:06 +000024#include <config.h>
25#ifdef HAVE_STRING_H
26# include <string.h>
27#endif
28#include "xmalloc.h"
Jari Aaltob72432f1999-02-19 17:11:39 +000029
30/* Backwards compatibility, now that savestring has been removed from
31 all `public' readline header files. */
32char *
33savestring (s)
Jari Aalto28ef6c32001-04-06 19:14:31 +000034 const char *s;
Jari Aaltob72432f1999-02-19 17:11:39 +000035{
Chet Ramey495aee42011-11-22 19:11:26 -050036 char *ret;
37
38 ret = (char *)xmalloc (strlen (s) + 1);
39 strcpy (ret, s);
40 return ret;
Jari Aaltob72432f1999-02-19 17:11:39 +000041}