14 lines
227 B
C
14 lines
227 B
C
#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 */
|
|
|