Lines Matching defs:end
18 if (pos > catch->len) error_exit("linestack_addstack past end.");
28 // Copy end (into new allocation if necessary)
90 // Returns width in columns, moves *str to end of data consumed.
95 char *start, *end;
98 for (end = start = *str; *end; columns += col, end += bytes) {
99 if ((bytes = utf8towc(&wc, end, 4))>0 && (col = wcwidth(wc))>=0) {
102 if (out) fwrite(end, bytes, 1, out);
110 wc = *end;
116 } else if (out) fwrite(end, 1, bytes, out);
118 *str = end;