Files
mars-libowfat/test/iob.c
2003-09-08 20:32:43 +00:00

14 lines
267 B
C

#include <assert.h>
#include "iob.h"
main() {
int64 fd;
io_batch* b;
assert(io_readfile(&fd,"GNUmakefile"));
assert(b=iob_new(10));
assert(iob_addbuf(b,"Huhu",4));
assert(iob_addbuf(b," fnord\n",7));
assert(iob_addfile(b,fd,10,10));
iob_send(1,b);
}