?? iscons.c
字號:
/*
** iscons()
**
** A function to determine if a specified stream refers to the console.
**
** Original Copyright 1988-1991 by Bob Stout as part of
** the MicroFirm Function Library (MFL)
**
** This subset version is hereby donated to the public domain.
*/
#include <stdio.h>
#include <dos.h>
#define BOOL(x) (!(!(x)))
int iscons(FILE *fp)
{
union REGS regs;
regs.x.ax = 0x4400;
regs.x.bx = (unsigned)fileno(fp);
intdos(®s, ®s);
if (0 == (regs.x.ax & 0x80))
return 0;
return BOOL(regs.x.ax & 0x13);
}
#ifdef TEST
int main(void)
{
fprintf(stderr, "stdin is%s redirected\n",
iscons(stdin) ? " not" : "");
fprintf(stderr, "stdout is%s redirected\n",
iscons(stdout) ? " not" : "");
}
#endif /* TEST */
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -