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

/freebsd-9.3-release/contrib/ncurses/progs/
H A Dtoe.c335 int this_opt, last_opt = '?'; local
340 while ((this_opt = getopt(argc, argv, "0123456789ahu:vU:V")) != -1) {
342 if (isdigit(this_opt)) {
345 v_opt = (this_opt - '0');
352 v_opt += (this_opt - '0');
353 last_opt = this_opt;
357 switch (this_opt) {
H A Dtic.c476 int this_opt, last_opt = '?'; local
515 while ((this_opt = getopt(argc, argv,
517 if (isdigit(this_opt)) {
520 v_opt = (v_opt * 10) + (this_opt - '0');
523 width = (width * 10) + (this_opt - '0');
526 if (this_opt != '1')
528 last_opt = this_opt;
533 switch (this_opt) {
611 last_opt = this_opt;

Completed in 111 milliseconds