From 5d3fdcdfabb30a69cd7c701bfd573e9bc4fd219d Mon Sep 17 00:00:00 2001 From: TazyFoundSoup Date: Sun, 29 Mar 2026 08:11:26 +1100 Subject: feat(bridges): Move bridges to include folder --- include/bridges/stdio/stream.h | 8 ++++++++ 1 file changed, 8 insertions(+) create mode 100644 include/bridges/stdio/stream.h (limited to 'include/bridges/stdio/stream.h') diff --git a/include/bridges/stdio/stream.h b/include/bridges/stdio/stream.h new file mode 100644 index 0000000..1ae2dbc --- /dev/null +++ b/include/bridges/stdio/stream.h @@ -0,0 +1,8 @@ +#include +#include + +// Default reads for common types (just FILE for now, memory later) +size_t ff_file_read(void *ptr, size_t size, void *user); + +// Stream creation helpers +ff_stream ff_create_file_stream(FILE *f); \ No newline at end of file -- cgit v1.2.3