| 
									
										
										
										
											1996-12-23 17:02:34 +00:00
										 |  |  | /* **************************************************************** */ | 
					
						
							|  |  |  | /*								    */ | 
					
						
							|  |  |  | /*			Testing Readline			    */ | 
					
						
							|  |  |  | /*								    */ | 
					
						
							|  |  |  | /* **************************************************************** */ | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											1997-06-05 14:59:13 +00:00
										 |  |  | /*
 | 
					
						
							|  |  |  |  * 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
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											1996-12-23 17:02:34 +00:00
										 |  |  | #include <stdio.h>
 | 
					
						
							|  |  |  | #include <sys/types.h>
 | 
					
						
							| 
									
										
										
										
											1997-06-05 14:59:13 +00:00
										 |  |  | #include "readline.h"
 | 
					
						
							|  |  |  | #include "history.h"
 | 
					
						
							| 
									
										
										
										
											1996-12-23 17:02:34 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											1998-04-17 19:52:44 +00:00
										 |  |  | extern HIST_ENTRY **history_list (); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											1996-12-23 17:02:34 +00:00
										 |  |  | main () | 
					
						
							|  |  |  | { | 
					
						
							| 
									
										
										
										
											1998-04-17 19:52:44 +00:00
										 |  |  |   char *temp, *prompt; | 
					
						
							|  |  |  |   int done; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |   temp = (char *)NULL; | 
					
						
							|  |  |  |   prompt = "readline$ "; | 
					
						
							|  |  |  |   done = 0; | 
					
						
							| 
									
										
										
										
											1996-12-23 17:02:34 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  |   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) | 
					
						
							|  |  |  | 	{ | 
					
						
							| 
									
										
										
										
											1998-04-17 19:52:44 +00:00
										 |  |  | 	  HIST_ENTRY **list; | 
					
						
							| 
									
										
										
										
											1996-12-23 17:02:34 +00:00
										 |  |  | 	  register int i; | 
					
						
							| 
									
										
										
										
											1998-04-17 19:52:44 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	  list = history_list (); | 
					
						
							| 
									
										
										
										
											1996-12-23 17:02:34 +00:00
										 |  |  | 	  if (list) | 
					
						
							|  |  |  | 	    { | 
					
						
							|  |  |  | 	      for (i = 0; list[i]; i++) | 
					
						
							| 
									
										
										
										
											1998-04-17 19:52:44 +00:00
										 |  |  | 		fprintf (stderr, "%d: %s\r\n", i, list[i]->line); | 
					
						
							| 
									
										
										
										
											1996-12-23 17:02:34 +00:00
										 |  |  | 	    } | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  |       free (temp); | 
					
						
							|  |  |  |     } | 
					
						
							| 
									
										
										
										
											1998-04-17 19:52:44 +00:00
										 |  |  |   exit (0); | 
					
						
							| 
									
										
										
										
											1996-12-23 17:02:34 +00:00
										 |  |  | } |