Home
last modified time | relevance | path

Searched refs:offset_out (Results 1 – 1 of 1) sorted by relevance

/coreutils/src/
Dfold.c123 size_t offset_out = 0; /* Index in 'line_out' for next char. */ in fold_file() local
146 if (offset_out + 1 >= allocated_out) in fold_file()
151 line_out[offset_out++] = c; in fold_file()
152 fwrite (line_out, sizeof (char), offset_out, stdout); in fold_file()
153 column = offset_out = 0; in fold_file()
168 size_t logical_end = offset_out; in fold_file()
193 offset_out - logical_end); in fold_file()
194 offset_out -= logical_end; in fold_file()
195 for (column = i = 0; i < offset_out; i++) in fold_file()
201 if (offset_out == 0) in fold_file()
[all …]