Lines Matching refs:start
33 * copy the lines starting at offset <start> from in <in> to <out>
36 int rev_line(Sfio_t *in, Sfio_t *out, off_t start)
47 if(start>0 && sfmove(in, (Sfio_t*)0, start, -1) != start)
52 start=0;
54 if((offset = sfseek(in,(off_t)0,SEEK_END)) <= start)
60 if(offset < start)
62 n -= (start-offset);
63 offset = start;
101 if(offset <= start)
107 sfseek(in, start, SEEK_SET);