vb_print.h

来自「这是一个C程序分析工具」· C头文件 代码 · 共 33 行

H
33
字号
/*===================================================================
    FILE   :   @(#)vb_print.h	2.2  -  08/04/99
  ===================================================================*/
/*===================================================================
	PURPOSE: Declaration of a utility to print variable length messages to
	the selected output file.

	SYSTEM : Utility

   Written by:  C.W. Cooper December, 1994
  ===================================================================*/

/*==[ PUBLIC FUNCTION PROTOTYPES ]===================================*/
/*
	vb_init() - Establishes the print threshold level and output
	destination.  The user calls this function with the desired
	threshold level and a pointer to the desired destination file
	(stdout for screen output).  The user is responsible for opening
	and closing the output file as necessary. 
*/
void vb_init(int level,FILE *destination);

/*
	vb_print() - If an output destination has been established and
	the input level is <= the threshold level established	by a previous
	call to vb_init(), this function sends the variable argument list
	to the output destination in the format of the second argument.
*/
	void vb_print(int level,char *format,...);

/*==[ EOF ]==========================================================*/

⌨️ 快捷键说明

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