putchar.c

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

C
26
字号
/* 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 + =
减小字号Ctrl + -
显示快捷键?