blob: 988982c9dfce5c765abb6263a11d5634e29aca2a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
#ifndef BH_INTERNAL_IO_H
#define BH_INTERNAL_IO_H
#include <bh/io.h>
void bh_io_init(bh_io_t *io,
const bh_io_table_t *table);
void bh_io_destroy(bh_io_t *io);
#endif /* BH_INTERNAL_IO_H */
|