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