blob: d0be93bdb6246f836198ac201b46ea796c85fe2d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
#ifndef BH_INTERNAL_IO_H
#define BH_INTERNAL_IO_H
#include "bh.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 */
|