summaryrefslogtreecommitdiff
path: root/include/tinyff/stream.h
diff options
context:
space:
mode:
authorTazyFoundSoup <gardendistrict0x0@outlook.com>2026-05-22 09:43:59 +1000
committerTazyFoundSoup <gardendistrict0x0@outlook.com>2026-05-22 09:43:59 +1000
commit77aa9a3259ddfd6c64534d63424d5b0fa3010900 (patch)
tree3744ec77c3cbe164457d1e421fd4bf7dceff4c02 /include/tinyff/stream.h
parent4d42b317f4970bd08f9b81fcc184fc015736ff58 (diff)
refactor: move benches to include directory
Diffstat (limited to 'include/tinyff/stream.h')
-rw-r--r--include/tinyff/stream.h5
1 files changed, 1 insertions, 4 deletions
diff --git a/include/tinyff/stream.h b/include/tinyff/stream.h
index 95c5884..88cea69 100644
--- a/include/tinyff/stream.h
+++ b/include/tinyff/stream.h
@@ -9,10 +9,7 @@
typedef size_t (*ff_read_cb)(void *ptr, size_t size, void *user);
-typedef size_t (*ff_write_cb)(const void *ptr, size_t size, const void *user);
-// ^
-// |
-// there clang, happy now?
+typedef size_t (*ff_write_cb)(const void *ptr, size_t size, void *user);
typedef struct {
ff_read_cb read;