Mercurial > hg > octave-nkf
view readline/examples/rltest.c @ 3186:edaa9a2d3d9c
[project @ 1998-10-02 19:12:19 by jwe]
author | jwe |
---|---|
date | Fri, 02 Oct 1998 19:12:19 +0000 |
parents | 9d4e3a9de17e |
children | 3001e15555e9 |
line wrap: on
line source
/* **************************************************************** */ /* */ /* Testing Readline */ /* */ /* **************************************************************** */ /* * Remove the next line if you're compiling this against an installed * libreadline.a */ #define READLINE_LIBRARY #if defined (HAVE_CONFIG_H) #include <config.h> #endif #include <stdio.h> #include <sys/types.h> #include "readline.h" #include "history.h" main () { HIST_ENTRY **history_list (); char *temp = (char *)NULL; char *prompt = "readline$ "; int done = 0; while (!done) { temp = readline (prompt); /* Test for EOF. */ if (!temp) exit (1); /* If there is anything on the line, print it and remember it. */ if (*temp) { fprintf (stderr, "%s\r\n", temp); add_history (temp); } /* Check for `command' that we handle. */ if (strcmp (temp, "quit") == 0) done = 1; if (strcmp (temp, "list") == 0) { HIST_ENTRY **list = history_list (); register int i; if (list) { for (i = 0; list[i]; i++) { fprintf (stderr, "%d: %s\r\n", i, list[i]->line); free (list[i]->line); } free (list); } } free (temp); } }