You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
14 lines
290 B
C
14 lines
290 B
C
7 months ago
|
#include <stdlib.h>
|
||
|
#include "byte.h"
|
||
|
#include "iob_internal.h"
|
||
|
|
||
|
int iob_init(io_batch* b,size_t hint_entries) {
|
||
|
byte_zero(b,sizeof(io_batch));
|
||
|
if (hint_entries) {
|
||
|
if (!array_allocate(&b->b,sizeof(iob_entry),hint_entries))
|
||
|
return -1;
|
||
|
array_trunc(&b->b);
|
||
|
}
|
||
|
return 0;
|
||
|
}
|