diff options
| author | TazyFoundSoup <gardendistrict0x0@outlook.com> | 2026-03-30 06:39:44 +1100 |
|---|---|---|
| committer | TazyFoundSoup <gardendistrict0x0@outlook.com> | 2026-03-30 06:39:44 +1100 |
| commit | a7a9b34b832042f94813a1e325d22051a99dd633 (patch) | |
| tree | b8d93d844cdd971197fbac35e774518bc4d1cfee /include | |
| parent | ba77f399274da516c09e40035016ed870487edd2 (diff) | |
fix(bridges): Move stream source to src/
Diffstat (limited to 'include')
| -rw-r--r-- | include/bridges/stdio/stream_bridge.h (renamed from include/bridges/stdio/stream.h) | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/include/bridges/stdio/stream.h b/include/bridges/stdio/stream_bridge.h index 1ae2dbc..561fa8a 100644 --- a/include/bridges/stdio/stream.h +++ b/include/bridges/stdio/stream_bridge.h @@ -1,8 +1,10 @@ +#include <stddef.h> #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); +size_t ff_file_write(const void *ptr, size_t size, void *user); // Stream creation helpers ff_stream ff_create_file_stream(FILE *f);
\ No newline at end of file |
