home *** CD-ROM | disk | FTP | other *** search
/ Vectronix 2 / VECTRONIX2.iso / FILES_07 / LATTIC_3.ZIP / HEADERS / CONIO.H < prev    next >
C/C++ Source or Header  |  1989-12-07  |  426b  |  25 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. int cget(void);
  13. int cgetc(void);
  14. char *cgets(char *);
  15. int cputc(int);
  16. int cputs(const char *);
  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.