home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 11 Util / 11-Util.zip / getline.zip / testgl.c < prev    next >
C/C++ Source or Header  |  1993-11-28  |  257b  |  18 lines

  1. #include <stdio.h>
  2. #include "getline.h"
  3.  
  4. main()
  5. /* 
  6.  * just echo user input lines, letting user edit them and move through
  7.  * history list
  8.  */
  9. {
  10.     char *p;
  11.  
  12.     do {
  13.     p = getline("PROMPT>>>> ");
  14.     gl_histadd(p);
  15.     fputs(p, stdout);
  16.     } while (*p != 0);
  17. }
  18.