home *** CD-ROM | disk | FTP | other *** search
/ The C Users' Group Library 1994 August / wc-cdrom-cusersgrouplibrary-1994-08.iso / listings / v_06_03 / v6n3053b.txt < prev    next >
Text File  |  1989-09-28  |  220b  |  9 lines

  1. #define scr_init()
  2. #define scr_put(x) fputs(x,stdout)
  3. #define scr_mv_xy(x,y) fputs("\n",stdout)
  4. #define scr_cls() fputs("\f",stdout)
  5. #define scr_eol()
  6. #define scr_get(x) fgets(x,MAXLINE,stdin)
  7. #define scr_end()
  8.  
  9.