Bump versions.
[gsasl.git] / gl / readline.c
blobf93a115293e1af1cc557810f7ef04fa8dcc78dee
1 /* readline.c --- Simple implementation of readline.
2 Copyright (C) 2005, 2006 Free Software Foundation, Inc.
3 Written by Simon Josefsson
5 This program is free software; you can redistribute it and/or modify
6 it under the terms of the GNU General Public License as published by
7 the Free Software Foundation; either version 2, or (at your option)
8 any later version.
10 This program is distributed in the hope that it will be useful,
11 but WITHOUT ANY WARRANTY; without even the implied warranty of
12 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 GNU General Public License for more details.
15 You should have received a copy of the GNU General Public License
16 along with this program; if not, write to the Free Software Foundation,
17 Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. */
19 #include <config.h>
21 /* This module is intended to be used when the application only needs
22 the readline interface. If you need more functions from the
23 readline library, it is recommended to require the readline library
24 (or improve this module) rather than #if-protect part of your
25 application (doing so would add assumptions of this module into
26 your application). The application should use #include
27 "readline.h", that header file will include <readline/readline.h>
28 if the real library is present on the system. */
30 /* Get specification. */
31 #include "readline.h"
33 #include <stdio.h>
34 #include <string.h>
35 #include <getline.h>
37 char *
38 readline (const char *prompt)
40 char *out = NULL;
41 size_t size = 0;
43 if (prompt)
44 fputs (prompt, stdout);
46 if (getline (&out, &size, stdin) < 0)
47 return NULL;
49 while (*out && (out[strlen (out) - 1] == '\r'
50 || out[strlen (out) - 1] == '\n'))
51 out[strlen (out) - 1] = '\0';
53 return out;