diff options
| author | TazyFoundSoup <gardendistrict0x0@outlook.com> | 2026-02-16 18:30:44 +1100 |
|---|---|---|
| committer | TazyFoundSoup <gardendistrict0x0@outlook.com> | 2026-02-16 18:30:44 +1100 |
| commit | b8de9285970775d539f09f7bc81d3eae24e410e9 (patch) | |
| tree | 0adb6e6052ea37b466f6015ae08af4e5cd44ee4e /include/tinyff/image | |
| parent | 73e9f1417d98a2b414ccc43308fd798a92f37e4e (diff) | |
feat(bmp): Implement ff_bmp_isvalid function for BMP signature validation
Diffstat (limited to 'include/tinyff/image')
| -rw-r--r-- | include/tinyff/image/bmp.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/include/tinyff/image/bmp.h b/include/tinyff/image/bmp.h index 82edff3..8c4fd56 100644 --- a/include/tinyff/image/bmp.h +++ b/include/tinyff/image/bmp.h @@ -36,4 +36,8 @@ typedef struct { } ff_bmp_ctx; +ff_result ff_bmp_isvalid(ff_stream *stream); +ff_result ff_open_bmp(ff_stream *stream, ff_bmp_ctx **out_ctx); + + #endif BMP_H_
\ No newline at end of file |
