bf.h revision 64562
164562Sgshapiro/*
264562Sgshapiro * Copyright (c) 1999 Sendmail, Inc. and its suppliers.
364562Sgshapiro *	All rights reserved.
464562Sgshapiro *
564562Sgshapiro * By using this file, you agree to the terms and conditions set
664562Sgshapiro * forth in the LICENSE file which can be found at the top level of
764562Sgshapiro * the sendmail distribution.
864562Sgshapiro *
964562Sgshapiro *	$Id: bf.h,v 8.5 1999/11/04 19:31:25 ca Exp $
1064562Sgshapiro *
1164562Sgshapiro * Contributed by Exactis.com, Inc.
1264562Sgshapiro *
1364562Sgshapiro */
1464562Sgshapiro
1564562Sgshapiro#ifndef BF_H
1664562Sgshapiro#define BF_H 1
1764562Sgshapiro
1864562Sgshapiroextern FILE	*bfopen __P((char *, int, size_t, long));
1964562Sgshapiroextern FILE	*bfdup __P((FILE *));
2064562Sgshapiroextern int	bfcommit __P((FILE *));
2164562Sgshapiroextern int	bfrewind __P((FILE *));
2264562Sgshapiroextern int	bftruncate __P((FILE *));
2364562Sgshapiroextern int	bfclose __P((FILE *));
2464562Sgshapiroextern bool	bftest __P((FILE *));
2564562Sgshapiro
2664562Sgshapiro#endif /* BF_H */
27