home *** CD-ROM | disk | FTP | other *** search
/ Liren Large Software Subsidy 15 / 15.iso / s / s038 / 10.ddi / 017.LIF / CONIO.H < prev    next >
Encoding:
C/C++ Source or Header  |  1992-07-02  |  626 b   |  29 lines

  1. /* conio.h - low level I/O function prototypes
  2.  * $Version: 1.1 $
  3.  * Copyright (C) 1988-91 Intel Corporation, ALL RIGHTS RESERVED
  4.  */
  5.  
  6. #ifndef _conioh
  7. #define _conioh
  8. /*lint -library */
  9.  
  10. #pragma fixedparams("cgets", "cputs", "getch", "getche")
  11. #pragma fixedparams("kbhit", "putch", "ungetch")
  12. #pragma varparams("cprintf", "cscanf")
  13.  
  14. /*
  15.  * Function prototypes:
  16.  */
  17. char *cgets(char *);
  18. int   cprintf(const char *, ...);
  19. int   cputs(const char *);
  20. int   cscanf(const char *, ...);
  21. int   getch(void);
  22. int   getche(void);
  23. int   kbhit(void);
  24. int   putch(int);
  25. int   ungetch(int);
  26.  
  27. #endif /* _conioh */
  28.  
  29.