2003-09-08 20:29:39 +00:00
|
|
|
#include <stdlib.h>
|
2003-09-24 23:31:35 +00:00
|
|
|
#include "byte.h"
|
2003-09-08 20:29:39 +00:00
|
|
|
#include "iob_internal.h"
|
|
|
|
|
|
|
|
void iob_reset(io_batch* b) {
|
|
|
|
array_reset(&b->b);
|
2003-09-24 23:32:42 +00:00
|
|
|
byte_zero(b,sizeof(*b));
|
2003-09-08 20:29:39 +00:00
|
|
|
}
|