160064Storek /* 2*62309Sbostic * Copyright (c) 1993 3*62309Sbostic * The Regents of the University of California. All rights reserved. 460064Storek * 560064Storek * %sccs.include.redist.c% 660064Storek * 7*62309Sbostic * @(#)tftpsubs.h 8.1 (Berkeley) 06/06/93 860064Storek */ 960064Storek 1060064Storek /* 1160064Storek * Prototypes for read-ahead/write-behind subroutines for tftp user and 1260064Storek * server. 1360064Storek */ 1460064Storek struct tftphdr *r_init __P((void)); 1560064Storek void read_ahead __P((FILE *, int)); 1660064Storek int readit __P((FILE *, struct tftphdr **, int)); 1760064Storek 1860064Storek int synchnet __P((int)); 1960064Storek 2060064Storek struct tftphdr *w_init __P((void)); 2160064Storek int write_behind __P((FILE *, int)); 2260064Storek int writeit __P((FILE *, struct tftphdr **, int, int)); 23