| 285 | } |
| 286 | |
| 287 | void UArray_show(const UArray *self) { |
| 288 | printf("UArray_%p %s\t", (void *)self, CTYPE_name(self->itemType)); |
| 289 | printf("size: %i ", (int)self->size); |
| 290 | printf("itemSize: %i ", (int)self->itemSize); |
| 291 | printf("data: "); |
| 292 | UArray_print(self); |
| 293 | printf("\n"); |
| 294 | } |
| 295 | |
| 296 | void UArray_print(const UArray *self) { |
| 297 | if (self->encoding == CENCODING_ASCII || self->encoding == CENCODING_UTF8) { |
nothing calls this directly
no test coverage detected