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

📄 vb_print.h

📁 这是一个C程序分析工具
💻 H
字号:
/*===================================================================
    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 + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -