1 /* **************************************************************** */
5 /* **************************************************************** */
7 /* Copyright (C) 1987-2002 Free Software Foundation, Inc.
9 This file is part of the GNU Readline Library, a library for
10 reading lines of text with interactive input and history editing.
12 The GNU Readline Library is free software; you can redistribute it
13 and/or modify it under the terms of the GNU General Public License
14 as published by the Free Software Foundation; either version 2, or
15 (at your option) any later version.
17 The GNU Readline Library is distributed in the hope that it will be
18 useful, but WITHOUT ANY WARRANTY; without even the implied warranty
19 of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
20 GNU General Public License for more details.
22 The GNU General Public License is often shipped with GNU software, and
23 is generally kept in a file called COPYING or LICENSE. If you do not
24 have a copy of the license, write to the Free Software Foundation,
25 59 Temple Place, Suite 330, Boston, MA 02111 USA. */
27 #if defined (HAVE_CONFIG_H)
32 #include <sys/types.h>
34 #ifdef READLINE_LIBRARY
35 # include "readline.h"
38 # include <readline/readline.h>
39 # include <readline/history.h>
42 extern HIST_ENTRY
**history_list ();
50 prompt
= "readline$ ";
55 temp
= readline (prompt
);
61 /* If there is anything on the line, print it and remember it. */
64 fprintf (stderr
, "%s\r\n", temp
);
68 /* Check for `command' that we handle. */
69 if (strcmp (temp
, "quit") == 0)
72 if (strcmp (temp
, "list") == 0)
77 list
= history_list ();
80 for (i
= 0; list
[i
]; i
++)
81 fprintf (stderr
, "%d: %s\r\n", i
, list
[i
]->line
);