| 150 | } |
| 151 | |
| 152 | char* File::readLine(char* const output, uint64 max_length) { |
| 153 | return (is_gz_ ? gzgets(gz_f_, output, max_length) : fgets(output, max_length, f_)); |
| 154 | } |
| 155 | |
| 156 | bool File::seek(size_t position) { |
| 157 | return (is_gz_ ? |
no outgoing calls