diff options
Diffstat (limited to 'lib')
-rw-r--r-- | lib/lib.c | 19 |
1 files changed, 6 insertions, 13 deletions
@@ -958,24 +958,17 @@ void terminal_size(unsigned *x, unsigned *y) } } -// This should use a raw tty, fixit later. int yesno(char *prompt, int def) { - FILE *fps[] = {stdin, stdout, stderr}; - int i; char buf; - for (i=0; i<3; i++) if (isatty(i)) break; - if (i == 3) return 1; - - fprintf(fps[i], "%s (%c/%c):", prompt, def ? 'Y' : 'y', def ? 'n' : 'N'); - fflush(fps[i]); - while (fread(&buf, 1, 1, fps[i])) { - if (tolower(buf) == 'y') def = 1; - if (tolower(buf) == 'n') def = 0; - else if (!isspace(buf)) continue; + fprintf(stderr, "%s (%c/%c):", prompt, def ? 'Y' : 'y', def ? 'n' : 'N'); + fflush(stderr); + while (fread(&buf, 1, 1, stdin)) { + int new; - break; + if (isspace(buf)) break; + if (-1 != (new = stridx("ny", tolower(buf)))) def = new; } return def; |