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/lib/algo/avl_tree.h | 8 +++++--- include/lib/algo/flood_fill.h | 3 ++- 2 files changed, 7 insertions(+), 4 deletions(-) (limited to 'include/lib/algo') diff --git a/include/lib/algo/avl_tree.h b/include/lib/algo/avl_tree.h index f77ce5b..4467fd1 100644 --- a/include/lib/algo/avl_tree.h +++ b/include/lib/algo/avl_tree.h @@ -6,19 +6,21 @@ #include #include +#define AvlHeight_t uint8_t + struct AVLNode { void* data; bool_t (*compare)(void*, void*); struct AVLNode* left; struct AVLNode* right; - uint8_t height; + AvlHeight_t height; }; // Get the height of an AVL node -uint8_t get_height(struct AVLNode* node); +AvlHeight_t get_height(struct AVLNode* node); // Get the Maximum Height between two -uint8_t max_height(uint8_t a, uint8_t b); +AvlHeight_t max_height(AvlHeight_t a, AvlHeight_t b); // Get the balance factor of a node ssize_t get_balance_factor(struct AVLNode* node); diff --git a/include/lib/algo/flood_fill.h b/include/lib/algo/flood_fill.h index 81ed6fd..e9872eb 100644 --- a/include/lib/algo/flood_fill.h +++ b/include/lib/algo/flood_fill.h @@ -3,6 +3,7 @@ #include #include +#include #include #include @@ -14,6 +15,6 @@ // 4. Check if the (x,y) coordinate in the image is the same color as the fill color // 5. If all hold, set the label for the pixel, and check each neighbor // Otherwise, stop flooding -bool_t flood(uint8_t* image, uint16_t* mask, size_t width, size_t height, size_t channels, size_t x, size_t y, uint8_t* fill_color, uint16_t label); +bool_t flood(ImageData_t* image, ImageMaskData_t* mask, size_t width, size_t height, size_t channels, size_t x, size_t y, ImageData_t* fill_color, ImageMaskData_t label); #endif -- cgit v1.2.1