aboutsummaryrefslogtreecommitdiff
path: root/main.c
blob: 1f85fabed4fde6a4b9dfbcc07f7e4678e8d882d3 (plain)
1
2
3
4
5
6
7
8
9
10
#include <bh/io.h>

int main()
{
    bh_io_t *io = bh_file_new("hello.txt");
    bh_io_open(io, BH_IO_WRITE);
    bh_io_write(io, "Hello, world!", 13, NULL);
    bh_io_free(io);
    return 0;
}