Lines Matching defs:ln
192 struct str ln;
222 ln.file = grep_malloc(strlen(fn) + 1);
223 strcpy(ln.file, fn);
224 ln.line_no = 0;
225 ln.len = 0;
227 ln.off = -1;
230 ln.off += ln.len + 1;
231 if ((ln.dat = grep_fgetln(f, &ln.len)) == NULL || ln.len == 0)
233 if (ln.len > 0 && ln.dat[ln.len - 1] == line_sep)
234 --ln.len;
235 ln.line_no++;
240 free(ln.file);
245 t = procline(&ln, f->binary);
261 printf("%s:", ln.file);
272 free(ln.file);