From 16422831ed49c573c1b8a43ba907bceb00fd5eea Mon Sep 17 00:00:00 2001 From: Christian C Date: Sat, 22 Mar 2025 22:27:40 -0700 Subject: Named Types --- include/test/lib/color.h | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) (limited to 'include/test/lib') diff --git a/include/test/lib/color.h b/include/test/lib/color.h index be0d62f..2e9b863 100644 --- a/include/test/lib/color.h +++ b/include/test/lib/color.h @@ -7,9 +7,10 @@ #endif #include +#include -bool_t test_color_zero(const uint8_t* color1, size_t channels, bool_t result); -bool_t test_color_equal(const uint8_t* color1, const uint8_t* color2, size_t channels, bool_t result); +bool_t test_color_zero(const ImageData_t* color1, size_t channels, bool_t result); +bool_t test_color_equal(const ImageData_t* color1, const ImageData_t* color2, size_t channels, bool_t result); // Meta test function bool_t TEST_lib_color(); -- cgit v1.2.1