106f25ae9SGregory Neil Shapiro /* 206f25ae9SGregory Neil Shapiro * Copyright (c) 1999 Sendmail, Inc. and its suppliers. 306f25ae9SGregory Neil Shapiro * All rights reserved. 406f25ae9SGregory Neil Shapiro * 506f25ae9SGregory Neil Shapiro * By using this file, you agree to the terms and conditions set 606f25ae9SGregory Neil Shapiro * forth in the LICENSE file which can be found at the top level of 706f25ae9SGregory Neil Shapiro * the sendmail distribution. 806f25ae9SGregory Neil Shapiro * 906f25ae9SGregory Neil Shapiro * $Id: bf.h,v 8.5 1999/11/04 19:31:25 ca Exp $ 1006f25ae9SGregory Neil Shapiro * 1106f25ae9SGregory Neil Shapiro * Contributed by Exactis.com, Inc. 1206f25ae9SGregory Neil Shapiro * 1306f25ae9SGregory Neil Shapiro */ 1406f25ae9SGregory Neil Shapiro 1506f25ae9SGregory Neil Shapiro #ifndef BF_H 1606f25ae9SGregory Neil Shapiro #define BF_H 1 1706f25ae9SGregory Neil Shapiro 1806f25ae9SGregory Neil Shapiro extern FILE *bfopen __P((char *, int, size_t, long)); 1906f25ae9SGregory Neil Shapiro extern FILE *bfdup __P((FILE *)); 2006f25ae9SGregory Neil Shapiro extern int bfcommit __P((FILE *)); 2106f25ae9SGregory Neil Shapiro extern int bfrewind __P((FILE *)); 2206f25ae9SGregory Neil Shapiro extern int bftruncate __P((FILE *)); 2306f25ae9SGregory Neil Shapiro extern int bfclose __P((FILE *)); 2406f25ae9SGregory Neil Shapiro extern bool bftest __P((FILE *)); 2506f25ae9SGregory Neil Shapiro 2606f25ae9SGregory Neil Shapiro #endif /* BF_H */ 27