flushbuf.c.svn-base
来自「SImple Microkernel Distributed Operating」· SVN-BASE 代码 · 共 11 行
SVN-BASE
11 行
#include <stdio.h>#include "local.h"int _flushbuf(int c, FILE *stream){ if(fileno(stream) < 0) return (unsigned char) c; if(!io_testflag(stream, _IOWRITE)) return EOF; if(io_testflag(stream, _IOREADING) && !feof(stream)) return EOF;}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?