diff options
| author | TazyFoundSoup <gardendistrict0x0@outlook.com> | 2026-02-22 15:46:35 +1100 |
|---|---|---|
| committer | TazyFoundSoup <gardendistrict0x0@outlook.com> | 2026-02-22 15:46:35 +1100 |
| commit | f26533e666945befedcdc71952a5a3fca1c4c666 (patch) | |
| tree | 6d068bed2393ad2ad3e3b158604e1fcd394cdf76 /src/format | |
| parent | c9977fd038d10c50abcfa2f92e07bc5401737bec (diff) | |
refactor(*): Change include brackets from "" to <>
Diffstat (limited to 'src/format')
| -rw-r--r-- | src/format/image/bmp.c | 4 | ||||
| -rw-r--r-- | src/format/image/png.c | 5 |
2 files changed, 5 insertions, 4 deletions
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 <tinyff/image/bmp.h> +#include <tinyff/dbg.h> 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 <tinyff/image/png.h> -#include "result.h" -#include "tinyff/dbg.h" +#include <tinyff/result.h> +#include <tinyff/common.h> +#include <tinyff/dbg.h> ff_result ff_png_isvalid(ff_stream *stream) { |
