⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 fputc.c

📁 cygwin, 著名的在win32下模拟unix操作系统的东东
💻 C
字号:
/*FUNCTION<<fputc>>---write a character on a stream or fileINDEX	fputcANSI_SYNOPSIS	#include <stdio.h>	int fputc(int <[ch]>, FILE *<[fp]>);TRAD_SYNOPSIS	#include <stdio.h>	int fputc(<[ch]>, <[fp]>)	int <[ch]>;	FILE *<[fp]>;DESCRIPTION<<fputc>> converts the argument <[ch]> from an <<int>> to an<<unsigned char>>, then writes it to the file or stream identified by<[fp]>.If the file was opened with append mode (or if the stream cannotsupport positioning), then the new character goes at the end of thefile or stream.  Otherwise, the new character is written at thecurrent value of the position indicator, and the position indicatoroadvances by one.For a macro version of this function, see <<putc>>.RETURNSIf successful, <<fputc>> returns its argument <[ch]>.  If an errorintervenes, the result is <<EOF>>.  You can use `<<ferror(<[fp]>)>>' toquery for errors.PORTABILITY<<fputc>> is required by ANSI C.Supporting OS subroutines required: <<close>>, <<fstat>>, <<isatty>>,<<lseek>>, <<read>>, <<sbrk>>, <<write>>.*/#include <stdio.h>int_DEFUN (fputc, (ch, file),	int ch _AND	FILE * file){  int result;   _flockfile(file);  result = putc (ch, file);  _funlockfile(file);  return result;}

⌨️ 快捷键说明

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