| 232 | } |
| 233 | |
| 234 | static void ucvector_init(ucvector* p) |
| 235 | { |
| 236 | p->data = NULL; |
| 237 | p->size = p->allocsize = 0; |
| 238 | } |
| 239 | |
| 240 | #ifdef LODEPNG_COMPILE_DECODER |
| 241 | /*resize and give all new elements the value*/ |
no outgoing calls
no test coverage detected