| 126 | } |
| 127 | |
| 128 | long UArray_writeToCStream_(const UArray *self, FILE *stream) { |
| 129 | size_t totalItemsRead = UArray_fwrite_(self, self->size, stream); |
| 130 | if (ferror(stream)) { |
| 131 | perror("UArray_readFromCStream_"); |
| 132 | return -1; |
| 133 | } |
| 134 | return totalItemsRead; |
| 135 | } |
| 136 | |
| 137 | long UArray_writeToFilePath_(const UArray *self, const UArray *path) { |
| 138 | UArray *sysPath = |
no test coverage detected