Home
last modified time | relevance | path

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

/external/toybox/toys/posix/
Duniq.c64 char *thisline = NULL, *prevline = NULL, *tmpline, eol = '\n'; in uniq_main() local
76 while (getdelim(&thisline, &thissize, eol, infile) > 0) { in uniq_main()
82 t1 = skip(thisline); in uniq_main()
85 t1 = thisline; in uniq_main()
104 prevline = thisline; in uniq_main()
105 thisline = tmpline; in uniq_main()
119 free(thisline); in uniq_main()
/external/llvm/utils/vim/indent/
Dllvm.vim35 let thisline = getline(v:lnum)
36 if thisline =~ '^\s*}'
46 if thisline =~ ':\s*$'
/external/e2fsprogs/lib/ext2fs/
Dtdbtool.c382 static char thisline[1024]; in tdb_getline() local
385 thisline[0] = 0; in tdb_getline()
386 p = fgets(thisline, sizeof(thisline)-1, stdin); in tdb_getline()
389 return p?thisline:NULL; in tdb_getline()