bf.h revision 64562
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
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	bfclose __P((FILE *));
24extern bool	bftest __P((FILE *));
25
26#endif /* BF_H */
27