Searched refs:num_input (Results 1 - 1 of 1) sorted by relevance

/netgear-R7000-V1.0.7.12_1.2.5/src/router/busybox-1.x/miscutils/
H A Dless.c957 char num_input[sizeof(int)*4]; /* more than enough */ local
960 num_input[0] = first_digit;
967 while (i < sizeof(num_input)-1) {
968 num_input[i] = less_getch();
969 if (!num_input[i] || !isdigit(num_input[i]))
971 putchar(num_input[i]);
976 keypress = num_input[i];
977 num_input[i] = '\0';
978 num = bb_strtou(num_input, NUL
[all...]

Completed in 83 milliseconds