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 <> --- include/tinyff/image/bmp.h | 6 +++--- include/tinyff/image/generic.h | 4 ++-- include/tinyff/image/png.h | 8 ++++---- 3 files changed, 9 insertions(+), 9 deletions(-) (limited to 'include/tinyff/image') diff --git a/include/tinyff/image/bmp.h b/include/tinyff/image/bmp.h index 194e0f2..6623b1b 100644 --- a/include/tinyff/image/bmp.h +++ b/include/tinyff/image/bmp.h @@ -7,9 +7,9 @@ #include -#include "tinyff/result.h" -#include "tinyff/stream.h" -#include "tinyff/image/generic.h" +#include +#include +#include static const unsigned char BMP_SIGNATURE[2] = { 'B', 'M' diff --git a/include/tinyff/image/generic.h b/include/tinyff/image/generic.h index e136027..8b5bcaa 100644 --- a/include/tinyff/image/generic.h +++ b/include/tinyff/image/generic.h @@ -1,8 +1,8 @@ // This is the generics image header file for tinyff // It contains generic image structures and definitions -#include "common.h" -#include "result.h" +#include +#include #ifndef GENERIC_IMAGE_H #define GENERIC_IMAGE_H diff --git a/include/tinyff/image/png.h b/include/tinyff/image/png.h index 8d1b2f0..a43d353 100644 --- a/include/tinyff/image/png.h +++ b/include/tinyff/image/png.h @@ -7,10 +7,10 @@ #include #include -#include "tinyff/result.h" -#include "tinyff/common.h" -#include "tinyff/stream.h" -#include "tinyff/image/generic.h" +#include +#include +#include +#include // External #include "ext/tinf.h" -- cgit v1.2.3