From a18cea2fef7aa1545c9a984b60919541b26a6f84 Mon Sep 17 00:00:00 2001 From: Christian C Date: Tue, 1 Apr 2025 17:38:32 -0700 Subject: Clang Format --- include/lib/color.h | 11 ++++++----- 1 file changed, 6 insertions(+), 5 deletions(-) (limited to 'include/lib/color.h') diff --git a/include/lib/color.h b/include/lib/color.h index ceaecbd..f462a05 100644 --- a/include/lib/color.h +++ b/include/lib/color.h @@ -1,20 +1,21 @@ #ifndef INC_LIB_COLOR_H #define INC_LIB_COLOR_H -#include -#include #include #include +#include +#include // Color Equal to Background // Background: zeros in RGB, alpha can be whatever -bool_t color_zero(const ImageData_t* color1, size_t channels); +bool_t color_zero(const ImageData_t *color1, size_t channels); // Color Equality // Determine if two colors are identical -bool_t color_equal(const ImageData_t* color1, const ImageData_t* color2, size_t channels); +bool_t color_equal(const ImageData_t *color1, const ImageData_t *color2, + size_t channels); // Print out the `channels` length color vector -void print_color(ImageData_t* color, size_t channels); +void print_color(ImageData_t *color, size_t channels); #endif -- cgit v1.2.1