diff options
| author | TazyFoundSoup <gardendistrict0x0@outlook.com> | 2026-02-22 12:38:28 +1100 |
|---|---|---|
| committer | TazyFoundSoup <gardendistrict0x0@outlook.com> | 2026-02-22 12:38:28 +1100 |
| commit | 515ac5d6f74337901896c150caa198b953cef5a1 (patch) | |
| tree | 24f8c8456ba493d1b8407e63d2d36352cf1eddfb | |
| parent | 20169569c4d9584b3bbdf3ba19356b063b705702 (diff) | |
fix(bmp): Readd removed includes (oops, first time using Zed)
19 files changed, 15 insertions, 0 deletions
diff --git a/.cache/clangd/index/bmp.c.E41591D66900A0FB.idx b/.cache/clangd/index/bmp.c.E41591D66900A0FB.idx Binary files differnew file mode 100644 index 0000000..b1ab8c3 --- /dev/null +++ b/.cache/clangd/index/bmp.c.E41591D66900A0FB.idx diff --git a/.cache/clangd/index/bmp.h.564622D0E0D080F3.idx b/.cache/clangd/index/bmp.h.564622D0E0D080F3.idx Binary files differnew file mode 100644 index 0000000..7e3150d --- /dev/null +++ b/.cache/clangd/index/bmp.h.564622D0E0D080F3.idx diff --git a/.cache/clangd/index/common.c.D78FB0F5D07C3874.idx b/.cache/clangd/index/common.c.D78FB0F5D07C3874.idx Binary files differnew file mode 100644 index 0000000..997d0fe --- /dev/null +++ b/.cache/clangd/index/common.c.D78FB0F5D07C3874.idx diff --git a/.cache/clangd/index/common.h.E2F5D8AC4C98B817.idx b/.cache/clangd/index/common.h.E2F5D8AC4C98B817.idx Binary files differnew file mode 100644 index 0000000..bcc1683 --- /dev/null +++ b/.cache/clangd/index/common.h.E2F5D8AC4C98B817.idx diff --git a/.cache/clangd/index/dbg.c.A1F576137D542B32.idx b/.cache/clangd/index/dbg.c.A1F576137D542B32.idx Binary files differnew file mode 100644 index 0000000..78cf73a --- /dev/null +++ b/.cache/clangd/index/dbg.c.A1F576137D542B32.idx diff --git a/.cache/clangd/index/dbg.h.0B86993FBDB7BAAA.idx b/.cache/clangd/index/dbg.h.0B86993FBDB7BAAA.idx Binary files differnew file mode 100644 index 0000000..1bf0292 --- /dev/null +++ b/.cache/clangd/index/dbg.h.0B86993FBDB7BAAA.idx diff --git a/.cache/clangd/index/generic.h.A608754D5B3A72B2.idx b/.cache/clangd/index/generic.h.A608754D5B3A72B2.idx Binary files differnew file mode 100644 index 0000000..aac6037 --- /dev/null +++ b/.cache/clangd/index/generic.h.A608754D5B3A72B2.idx diff --git a/.cache/clangd/index/png.c.2004AA38C65DBD0B.idx b/.cache/clangd/index/png.c.2004AA38C65DBD0B.idx Binary files differnew file mode 100644 index 0000000..19efdaf --- /dev/null +++ b/.cache/clangd/index/png.c.2004AA38C65DBD0B.idx diff --git a/.cache/clangd/index/png.h.0F88174E6DBA6E2C.idx b/.cache/clangd/index/png.h.0F88174E6DBA6E2C.idx Binary files differnew file mode 100644 index 0000000..fdbe149 --- /dev/null +++ b/.cache/clangd/index/png.h.0F88174E6DBA6E2C.idx diff --git a/.cache/clangd/index/result.h.495351188EB7684B.idx b/.cache/clangd/index/result.h.495351188EB7684B.idx Binary files differnew file mode 100644 index 0000000..9025252 --- /dev/null +++ b/.cache/clangd/index/result.h.495351188EB7684B.idx diff --git a/.cache/clangd/index/stream.c.88834FD0696EF820.idx b/.cache/clangd/index/stream.c.88834FD0696EF820.idx Binary files differnew file mode 100644 index 0000000..88685b4 --- /dev/null +++ b/.cache/clangd/index/stream.c.88834FD0696EF820.idx diff --git a/.cache/clangd/index/stream.h.5C42EEACB32A4213.idx b/.cache/clangd/index/stream.h.5C42EEACB32A4213.idx Binary files differnew file mode 100644 index 0000000..fc8e4b4 --- /dev/null +++ b/.cache/clangd/index/stream.h.5C42EEACB32A4213.idx diff --git a/.cache/clangd/index/tinf.h.142E26539E9D3D00.idx b/.cache/clangd/index/tinf.h.142E26539E9D3D00.idx Binary files differnew file mode 100644 index 0000000..dfb20fe --- /dev/null +++ b/.cache/clangd/index/tinf.h.142E26539E9D3D00.idx diff --git a/.cache/clangd/index/tinflate.c.B2C9B5FA331027BB.idx b/.cache/clangd/index/tinflate.c.B2C9B5FA331027BB.idx Binary files differnew file mode 100644 index 0000000..1bee1ed --- /dev/null +++ b/.cache/clangd/index/tinflate.c.B2C9B5FA331027BB.idx diff --git a/.zed/settings.json b/.zed/settings.json new file mode 100644 index 0000000..4bc02e7 --- /dev/null +++ b/.zed/settings.json @@ -0,0 +1,12 @@ +{ + "languages": { + "C": { + "inlay_hints": { + "enabled": true + } + } + }, + "prettier": { + "allowed": true + } +} diff --git a/include/tinyff/image/bmp.h b/include/tinyff/image/bmp.h index a4cc393..194e0f2 100644 --- a/include/tinyff/image/bmp.h +++ b/include/tinyff/image/bmp.h @@ -3,6 +3,9 @@ #include <stdint.h> #include <stdbool.h> +#include <string.h> +#include <stdlib.h> + #include "tinyff/result.h" #include "tinyff/stream.h" diff --git a/src/common.o b/src/common.o Binary files differnew file mode 100644 index 0000000..bf4e638 --- /dev/null +++ b/src/common.o diff --git a/src/dbg.o b/src/dbg.o Binary files differnew file mode 100644 index 0000000..6c14b2a --- /dev/null +++ b/src/dbg.o diff --git a/src/stream.o b/src/stream.o Binary files differnew file mode 100644 index 0000000..4ee18eb --- /dev/null +++ b/src/stream.o |
