| 244 | } |
| 245 | |
| 246 | static void uivector_init(uivector* p) { |
| 247 | p->data = NULL; |
| 248 | p->size = p->allocsize = 0; |
| 249 | } |
| 250 | |
| 251 | /*returns 1 if success, 0 if failure ==> nothing done*/ |
| 252 | static unsigned uivector_push_back(uivector* p, unsigned c) { |
no outgoing calls
no test coverage detected