📄 putc.c
字号:
/* Copyright (c) Colorado School of Mines, 2006.*//* All rights reserved. */#include "sfstdio.h"/* Write out a byte** Written by Kiem-Phong Vo*/#if __STD_Cint putc(int c, FILE* f)#elseint putc(c, f)reg int c;reg FILE* f;#endif{ return fputc(c,f);}#if _lib_putc_unlocked && !_done_putc_unlocked && !defined(putc)#define _done_putc_unlocked 1#define putc putc_unlocked#include "putc.c"#undef putc#endif
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -