libowfat/io/iob_free.c
leitner 9eb09b5bfe add iob_free and man page for iob_reset.
check in some windoze compat crap (still does not compile through for
windoze)
2005-03-08 14:56:36 +00:00

8 lines
105 B
C

#include <stdlib.h>
#include "iob_internal.h"
void iob_free(io_batch* b) {
iob_reset(b);
free(b);
}