conio.h
外觀
conio.h是一個C標頭檔,用於MS-DOS C編譯器裏。此標頭檔宣告了數個有用的函數,提供程式設計者主控台的輸出入操作介面。大部份MS-DOS、Windows 3.x、Phar Lap、DOSX、OS/2或Win32的C編譯器都預設此標頭檔,並提供相關的函數。
用於UNIX及Linux的編譯器並不支援conio.h,因為它不屬於C標準函式庫(C Standard library)或POSIX的一部分。
函數
[編輯]conio.h所提供的函數計有:
- int kbhit(void)
- int getch(void)
- int getche(void)
- int ungetch(int c)
- char *cgets(char *buffer)
- int cscanf(char *format, arg0,... argn)
- int putch(int c)
- int cputs(const char *string)
- int cprintf(const char *format, arg0,... argn)