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 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 bffsync __P((FILE *)); 24 extern int bfclose __P((FILE *)); 25 extern bool bftest __P((FILE *)); 26 27 #endif /* BF_H */ 28