home *** CD-ROM | disk | FTP | other *** search
/ Usenet 1994 October / usenetsourcesnewsgroupsinfomagicoctober1994disk2.iso / misc / volume16 / pscmenu / part01 / MENU / utils.h < prev   
C/C++ Source or Header  |  1991-02-10  |  619b  |  33 lines

  1. # include <stdio.h>
  2. # include <termio.h>
  3.  
  4. /*    PSC MENU COPYRIGHT NOTICE
  5.  
  6.     Part of PSCMenu
  7.  
  8.     This software is to be considered to be public domain, it
  9. may be copied, modified and parts of it may be used in other programs
  10. as long as this copyright notice remains intact.
  11.  
  12.     Copyright()   PSC - Plymouth State College
  13.     Written by:   Ted Wisniewski 12-9-1990
  14.  
  15. */
  16.  
  17. # define         MAXL        80
  18. # define          THIS_TTY    0
  19. # define        DEL        0x08
  20. # define        BS        0x7f
  21. # define        SPACE        0x20
  22. # define        LF        0x0a
  23. # define         CR        0x0d
  24.  
  25. char *SO, *SE, *CE, *CM, *CL;
  26.  
  27. char *getenv(), *tgetstr(), *tgoto();
  28.  
  29. int outc();
  30.  
  31. struct termio ter_old, ter_des;
  32.  
  33.