| 3140 | |
| 3141 | #ifdef LODEPNG_COMPILE_ENCODER |
| 3142 | static int color_tree_has(ColorTree* tree, unsigned char r, unsigned char g, unsigned char b, unsigned char a) { |
| 3143 | return color_tree_get(tree, r, g, b, a) >= 0; |
| 3144 | } |
| 3145 | #endif /*LODEPNG_COMPILE_ENCODER*/ |
| 3146 | |
| 3147 | /*color is not allowed to already exist. |
no test coverage detected