returns 1 if success, 0 if failure ==> nothing done*/
| 250 | |
| 251 | /*returns 1 if success, 0 if failure ==> nothing done*/ |
| 252 | static unsigned uivector_push_back(uivector* p, unsigned c) { |
| 253 | if(!uivector_resize(p, p->size + 1)) return 0; |
| 254 | p->data[p->size - 1] = c; |
| 255 | return 1; |
| 256 | } |
| 257 | #endif /*LODEPNG_COMPILE_ENCODER*/ |
| 258 | #endif /*LODEPNG_COMPILE_ZLIB*/ |
| 259 |
no test coverage detected