| 337 | |
| 338 | #if 0 |
| 339 | static void intsetRepr(intset *is) { |
| 340 | for (uint32_t i = 0; i < intrev32ifbe(is->length); i++) { |
| 341 | printf("%lld\n", (uint64_t)_intsetGet(is,i)); |
| 342 | } |
| 343 | printf("\n"); |
| 344 | } |
| 345 | |
| 346 | static void error(char *err) { |
| 347 | printf("%s\n", err); |
nothing calls this directly
no test coverage detected