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

📄 xgets.c

📁 linux下的C语言开发
💻 C
字号:
/*-*//******************************************************** * extended_fgets -- an extended version of fgets.	* *		that allows for recording of input.	* ********************************************************//*+*/#include <stdio.h>/* * The main program opens this file if -S is on  * the command line. */FILE *save_file = NULL; /******************************************************** * extended_fgets -- get a line from the input file     * *              and record it in a save file if needed. * *                                                      * * Parameters                                           * *      line -- the line to read                        * *      size -- sizeof(line) -- maximum number of       * *                      characters to read              * *      file -- file to read data from                  * *              (normally stdin)                        * *                                                      * * Returns                                              * *      NULL -- error or end of file in read            * *      otherwise line (just like fgets)                * ********************************************************/char *extended_fgets(char *line, int size, FILE *file){    char *result;               /* result of fgets */    result = fgets(line, size, file);    /* Did someone ask for a save file?? */    if (save_file != NULL)         fputs(line, save_file);	/* Save line in file */    return (result);}

⌨️ 快捷键说明

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