xref: /netbsd-src/external/ibm-public/postfix/dist/src/util/vbuf_print.h (revision 41fbaed053f8fbfdf9d2a4ee0a7386a3c83f8505)
1 /*	$NetBSD: vbuf_print.h,v 1.1.1.1 2009/06/23 10:09:01 tron Exp $	*/
2 
3 #ifndef _VBUF_PRINT_H_INCLUDED_
4 #define _VBUF_PRINT_H_INCLUDED_
5 
6 /*++
7 /* NAME
8 /*	vbuf_print 3h
9 /* SUMMARY
10 /*	formatted print to generic buffer
11 /* SYNOPSIS
12 /*	#include <vbuf_print.h>
13 /* DESCRIPTION
14 /* .nf
15 
16  /*
17   * System library.
18   */
19 #include <stdarg.h>
20 
21  /*
22   * Utility library.
23   */
24 #include <vbuf.h>
25 
26  /*
27   * External interface.
28   */
29 extern VBUF *vbuf_print(VBUF *, const char *, va_list);
30 
31 /* LICENSE
32 /* .ad
33 /* .fi
34 /*	The Secure Mailer license must be distributed with this software.
35 /* AUTHOR(S)
36 /*	Wietse Venema
37 /*	IBM T.J. Watson Research
38 /*	P.O. Box 704
39 /*	Yorktown Heights, NY 10598, USA
40 /*--*/
41 
42 #endif
43