From f26533e666945befedcdc71952a5a3fca1c4c666 Mon Sep 17 00:00:00 2001 From: TazyFoundSoup Date: Sun, 22 Feb 2026 15:46:35 +1100 Subject: refactor(*): Change include brackets from "" to <> --- src/format/image/bmp.c | 4 ++-- src/format/image/png.c | 5 +++-- 2 files changed, 5 insertions(+), 4 deletions(-) (limited to 'src/format') diff --git a/src/format/image/bmp.c b/src/format/image/bmp.c index 5e63f0c..ed358df 100644 --- a/src/format/image/bmp.c +++ b/src/format/image/bmp.c @@ -1,5 +1,5 @@ -#include "tinyff/image/bmp.h" -#include "tinyff/dbg.h" +#include +#include ff_result ff_bmp_isvalid(ff_stream* stream) { diff --git a/src/format/image/png.c b/src/format/image/png.c index 29facd4..93e1521 100644 --- a/src/format/image/png.c +++ b/src/format/image/png.c @@ -1,6 +1,7 @@ #include -#include "result.h" -#include "tinyff/dbg.h" +#include +#include +#include ff_result ff_png_isvalid(ff_stream *stream) { -- cgit v1.2.3