summaryrefslogtreecommitdiff
path: root/include/bridges/stdio/stream.h
diff options
context:
space:
mode:
authorTazyFoundSoup <gardendistrict0x0@outlook.com>2026-03-29 08:11:26 +1100
committerTazyFoundSoup <gardendistrict0x0@outlook.com>2026-03-29 08:11:26 +1100
commit5d3fdcdfabb30a69cd7c701bfd573e9bc4fd219d (patch)
treef917dddb06bc6e44f6916957d42d8174812e6971 /include/bridges/stdio/stream.h
parent3c44b526652c820a085e9733df70543cdd0f535a (diff)
feat(bridges): Move bridges to include folder
Diffstat (limited to 'include/bridges/stdio/stream.h')
-rw-r--r--include/bridges/stdio/stream.h8
1 files changed, 8 insertions, 0 deletions
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 <stdio.h>
+#include <tinyff/stream.h>
+
+// 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