bf.h revision 73188
1/*
2 * Copyright (c) 1999, 2001 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.16.2 2001/02/14 04:07:27 gshapiro Exp $
10 *
11 * Contributed by Exactis.com, Inc.
12 *
13 */
14
15#ifndef BF_H
16#define BF_H 1
17
18extern FILE	*bfopen __P((char *, int, size_t, long));
19extern FILE	*bfdup __P((FILE *));
20extern int	bfcommit __P((FILE *));
21extern int	bfrewind __P((FILE *));
22extern int	bftruncate __P((FILE *));
23extern int	bffsync __P((FILE *));
24extern int	bfclose __P((FILE *));
25extern bool	bftest __P((FILE *));
26
27#endif /* BF_H */
28