| 3113 | }; |
| 3114 | |
| 3115 | static void color_tree_init(ColorTree* tree) { |
| 3116 | lodepng_memset(tree->children, 0, 16 * sizeof(*tree->children)); |
| 3117 | tree->index = -1; |
| 3118 | } |
| 3119 | |
| 3120 | static void color_tree_cleanup(ColorTree* tree) { |
| 3121 | int i; |
no test coverage detected