aboutsummaryrefslogtreecommitdiff
path: root/lib/lib.c
diff options
context:
space:
mode:
Diffstat (limited to 'lib/lib.c')
-rw-r--r--lib/lib.c7
1 files changed, 6 insertions, 1 deletions
diff --git a/lib/lib.c b/lib/lib.c
index 282e16d3..ab66b66e 100644
--- a/lib/lib.c
+++ b/lib/lib.c
@@ -819,11 +819,16 @@ void base64_init(char *p)
int yesno(int def)
{
+ return fyesno(stdin, def);
+}
+
+int fyesno(FILE *in, int def)
+{
char buf;
fprintf(stderr, " (%c/%c):", def ? 'Y' : 'y', def ? 'n' : 'N');
fflush(stderr);
- while (fread(&buf, 1, 1, stdin)) {
+ while (fread(&buf, 1, 1, in)) {
int new;
// The letter changes the value, the newline (or space) returns it.