Home
last modified time | relevance | path

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

/busybox-1.35.0/util-linux/
Dgetopt.c277 int arg_opt, tlen; in add_long_options() local
287 tlen = strlen(tokptr); in add_long_options()
288 if (tlen) { in add_long_options()
289 tlen--; in add_long_options()
290 if (tokptr[tlen] == ':') { in add_long_options()
292 if (tlen && tokptr[tlen-1] == ':') { in add_long_options()
293 tlen--; in add_long_options()
296 tokptr[tlen] = '\0'; in add_long_options()
297 if (tlen == 0) in add_long_options()
/busybox-1.35.0/scripts/kconfig/lxdialog/
Dutil.c186 int tlen = MIN(width - 2, strlen(title)); in print_title() local
188 mvwaddch(dialog, 0, (width - tlen) / 2 - 1, ' '); in print_title()
189 mvwaddnstr(dialog, 0, (width - tlen)/2, title, tlen); in print_title()