?? vb_print.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 + -