Home
last modified time | relevance | path

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

/busybox-1.35.0/editors/
Ddiff.c201 static void seek_ft(FILE_and_pos_t *ft, off_t pos) in seek_ft() argument
203 if (ft->ft_pos != pos) { in seek_ft()
204 ft->ft_pos = pos; in seek_ft()
205 fseeko(ft->ft_fp, pos, SEEK_SET); in seek_ft()
212 static int read_token(FILE_and_pos_t *ft, token_t tok) in read_token() argument
219 t = fgetc(ft->ft_fp); in read_token()
221 ft->ft_pos++; in read_token()
411 static void fetch(FILE_and_pos_t *ft, const off_t *ix, int a, int b, int ch) in fetch() argument
415 seek_ft(ft, ix[i - 1]); in fetch()
420 int c = fgetc(ft->ft_fp); in fetch()
[all …]