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