stdfputc.c

来自「su 的源代码库」· C语言 代码 · 共 17 行

C
17
字号
/* Copyright (c) Colorado School of Mines, 2006.*//* All rights reserved.                       */#include	"stdio_s.h"#undef putc#if __STD_Cint _stdfputc(int c, FILE* f)#elseint _stdfputc(c, f)int	c;FILE*	f;#endif{	return f ? sfputc(f,c) : -1;}

⌨️ 快捷键说明

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