Initial commit

This commit is contained in:
2025-01-18 17:24:36 +03:00
commit 453843f51a
28 changed files with 7356 additions and 0 deletions

10
main.c Normal file
View File

@@ -0,0 +1,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;
}