aboutsummaryrefslogtreecommitdiff
path: root/lib/algo
diff options
context:
space:
mode:
authorChristian C <cc@localhost>2025-03-22 22:27:40 -0700
committerChristian C <cc@localhost>2025-03-22 22:27:40 -0700
commit16422831ed49c573c1b8a43ba907bceb00fd5eea (patch)
tree1c2d86d5eecf6d1b7b4951f0b20f8c86e6939ac2 /lib/algo
parent123464e36f2a151d820e08db7b4b426ca2b3657a (diff)
Named Types
Diffstat (limited to 'lib/algo')
-rw-r--r--lib/algo/avl_tree.c4
-rw-r--r--lib/algo/flood_fill.c2
2 files changed, 3 insertions, 3 deletions
diff --git a/lib/algo/avl_tree.c b/lib/algo/avl_tree.c
index 9d38662..3b5c8aa 100644
--- a/lib/algo/avl_tree.c
+++ b/lib/algo/avl_tree.c
@@ -5,7 +5,7 @@
#include <stdio.h>
// Get the height of an AVL node
-uint8_t get_height(struct AVLNode* node)
+AvlHeight_t get_height(struct AVLNode* node)
{
if (node == NULL) {
return 0;
@@ -14,7 +14,7 @@ uint8_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)
{
return (a > b) ? a : b;
}
diff --git a/lib/algo/flood_fill.c b/lib/algo/flood_fill.c
index 62db658..0506532 100644
--- a/lib/algo/flood_fill.c
+++ b/lib/algo/flood_fill.c
@@ -8,7 +8,7 @@
// 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)
{
if ((x >= width) | (y >= height)) {
return FALSE;