vf

来自「Algorithms for Image Processing and Comp」· 代码 · 共 35 行

TXT
35
字号
@c ----------------------------------------------------------------------
@node vfork, unix
@heading @code{vfork}

@subheading Description

This function is provided to assist in porting Unix programs only.  It
always fails. 

@subheading Return Value

-1

@c ----------------------------------------------------------------------
@node vfprintf, stdio
@heading @code{vfprintf}
@subheading Syntax

@example
#include <stdio.h>
#include <stdarg.h>

int vfprintf(FILE *file, const char *format, va_list arguments);
@end example

@subheading Description

Sends formatted output from the @var{arguments} to the @var{file}. 
@xref{printf}

@subheading Return Value

The number of characters written.

⌨️ 快捷键说明

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