xref: /freebsd/contrib/sendmail/src/bf.h (revision 06f25ae9f1d6020a600a10f713046203d1a82570)
1 /*
2  * Copyright (c) 1999 Sendmail, Inc. and its suppliers.
3  *	All rights reserved.
4  *
5  * By using this file, you agree to the terms and conditions set
6  * forth in the LICENSE file which can be found at the top level of
7  * the sendmail distribution.
8  *
9  *	$Id: bf.h,v 8.5 1999/11/04 19:31:25 ca Exp $
10  *
11  * Contributed by Exactis.com, Inc.
12  *
13  */
14 
15 #ifndef BF_H
16 #define BF_H 1
17 
18 extern FILE	*bfopen __P((char *, int, size_t, long));
19 extern FILE	*bfdup __P((FILE *));
20 extern int	bfcommit __P((FILE *));
21 extern int	bfrewind __P((FILE *));
22 extern int	bftruncate __P((FILE *));
23 extern int	bfclose __P((FILE *));
24 extern bool	bftest __P((FILE *));
25 
26 #endif /* BF_H */
27