--- tftpd/inc/buf.h 2014/02/24 14:38:46 1.1 +++ tftpd/inc/buf.h 2014/02/24 15:23:39 1.2 @@ -0,0 +1,12 @@ +#ifndef __BUF_H +#define __BUF_H + + +int initBuffer(int siz); +void endBuffer(); +int flushBuffer(int fd); + +int bfwrite(int fd, void *buf, int buflen); + + +#endif