Postfix3.3.1
line_wrap.h
[詳解]
1 #ifndef _LINE_WRAP_H_INCLUDED_
2 #define _LINE_WRAP_H_INCLUDED_
3 
4 /*++
5 /* NAME
6 /* line_wrap 3h
7 /* SUMMARY
8 /* wrap long lines upon output
9 /* SYNOPSIS
10 /* #include <line_wrap.h>
11 /* DESCRIPTION
12 /* .nf
13 
14  /*
15  * External interface.
16  */
17 typedef void (*LINE_WRAP_FN) (const char *, int, int, void *);
18 extern void line_wrap(const char *, int, int, LINE_WRAP_FN, void *);
19 
20 /* LICENSE
21 /* .ad
22 /* .fi
23 /* The Secure Mailer license must be distributed with this software.
24 /* AUTHOR(S)
25 /* Wietse Venema
26 /* IBM T.J. Watson Research
27 /* P.O. Box 704
28 /* Yorktown Heights, NY 10598, USA
29 /*--*/
30 
31 #endif
int int
Definition: smtpd_proxy.h:21
void(* LINE_WRAP_FN)(const char *, int, int, void *)
Definition: line_wrap.h:17
void line_wrap(const char *, int, int, LINE_WRAP_FN, void *)
Definition: line_wrap.c:76