⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 snpdosys.h

📁 国外网站上的一些精典的C程序
💻 H
字号:
/***  SNPDOSYS.H - Snippets header file for DOS system-level functions*/#ifndef SNPDOSYS__H#define SNPDOSYS__H#include <stdio.h>#include "sniptype.h"#include "extkword.h"/***  Modified 02-Aug-2001 by rbs*//***  File: REDIRECT.C*/typedef  struct {      char  path[FILENAME_MAX];     /* File name                              */      int   which;                  /* File handle to redirect                */      int   where;                  /* Redirection file handle                */      int   oldhandle;              /* Saves a duplicate of the original      */      int   flag;                   /* Non-zero means active                  */} REDIR_STRUCT;extern REDIR_STRUCT redir_stdin, redir_stdout, redir_stderr;void  start_redirect    ( REDIR_STRUCT *s );void  stderr2stdout     ( REDIR_STRUCT *s );void  stop_redirect     ( REDIR_STRUCT *s );#endif /* SNPDOSYS__H */

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -