home *** CD-ROM | disk | FTP | other *** search
/ Crawly Crypt Collection 2 / crawlyvol2.bin / program / c / bts314b4 / conio.h < prev    next >
C/C++ Source or Header  |  1991-01-23  |  467b  |  30 lines

  1. /*
  2.  * conio.h - console I/O declarations
  3.  *
  4.  * Started 7/12/89 Alex G. Kiernan
  5.  *
  6.  * Copyright (c) 1989 HiSoft
  7.  */
  8.  
  9. #ifndef _CONIO_H
  10. #define _CONIO_H
  11.  
  12. #ifdef LATTICE
  13.  int cget(void);
  14.  int cgetc(void);
  15.  char *cgets(char *);
  16.  int cputc(int);
  17.  int cprintf(const char *, ...);
  18.  int cscanf(const char *, ...);
  19.  int getch(void);
  20.  int getche(void);
  21.  int kbhit(void);
  22.  int putch(int);
  23.  int ungetch(int);
  24. #endif
  25.  
  26. int cputs(const char *);
  27.  
  28. #endif
  29.  
  30.