Postfix3.3.1
off_cvt.h
[詳解]
1 #ifndef _OFF_CVT_H_INCLUDED_
2 #define _OFF_CVT_H_INCLUDED_
3 
4 /*++
5 /* NAME
6 /* off_cvt 3h
7 /* SUMMARY
8 /* off_t conversions
9 /* SYNOPSIS
10 /* #include <vstring.h>
11 /* #include <off_cvt.h>
12 /* DESCRIPTION
13 /* .nf
14 
15  /*
16  * Utility library.
17  */
18 #include <vstring.h>
19 
20  /*
21  * External interface.
22  */
23 extern off_t off_cvt_string(const char *);
24 extern VSTRING *off_cvt_number(VSTRING *, off_t);
25 
26 /* LICENSE
27 /* .ad
28 /* .fi
29 /* The Secure Mailer license must be distributed with this software.
30 /* AUTHOR(S)
31 /* Wietse Venema
32 /* IBM T.J. Watson Research
33 /* P.O. Box 704
34 /* Yorktown Heights, NY 10598, USA
35 /*--*/
36 
37 #endif
VSTRING * off_cvt_number(VSTRING *, off_t)
Definition: off_cvt.c:96
off_t off_cvt_string(const char *)
Definition: off_cvt.c:71