Home
last modified time | relevance | path

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

/busybox-1.35.0/coreutils/
Dexpand.c71 static void expand(FILE *file, unsigned tab_size, unsigned opt) in expand() argument
118 len = tab_size - (len % tab_size); in expand()
133 static void unexpand(FILE *file, unsigned tab_size, unsigned opt) in unexpand() argument
151 column += tab_size - (column % tab_size); in unexpand()
156 n = column / tab_size; in unexpand()
158 len = column = column % tab_size; in unexpand()
180 column = (column + len) % tab_size; in unexpand()
193 unsigned tab_size; in expand_main() local
218 tab_size = xatou_range(opt_t, 1, UINT_MAX); in expand_main()
233 IF_EXPAND(expand(file, tab_size, opt)); in expand_main()
[all …]