2001-03-16 22:47:14 +00:00
|
|
|
/* vi: set sw=4 ts=4: */
|
|
|
|
/*
|
2003-03-19 09:13:01 +00:00
|
|
|
* bb_ask_confirmation implementation for busybox
|
2001-03-16 22:47:14 +00:00
|
|
|
*
|
2003-03-19 09:13:01 +00:00
|
|
|
* Copyright (C) 2003 Manuel Novoa III <mjn3@codepoet.org>
|
2001-03-16 22:47:14 +00:00
|
|
|
*
|
2010-08-16 18:14:46 +00:00
|
|
|
* Licensed under GPLv2 or later, see file LICENSE in this source tree.
|
2003-03-19 09:13:01 +00:00
|
|
|
*/
|
|
|
|
|
|
|
|
/* Read a line from stdin. If the first non-whitespace char is 'y' or 'Y',
|
|
|
|
* return 1. Otherwise return 0.
|
2001-03-16 22:47:14 +00:00
|
|
|
*/
|
|
|
|
#include "libbb.h"
|
|
|
|
|
2008-06-27 02:52:20 +00:00
|
|
|
int FAST_FUNC bb_ask_confirmation(void)
|
2001-03-16 22:47:14 +00:00
|
|
|
{
|
2009-10-27 08:49:04 +00:00
|
|
|
char first = 0;
|
2003-03-19 09:13:01 +00:00
|
|
|
int c;
|
2001-03-16 22:47:14 +00:00
|
|
|
|
2003-03-19 09:13:01 +00:00
|
|
|
while (((c = getchar()) != EOF) && (c != '\n')) {
|
2009-10-27 08:49:04 +00:00
|
|
|
if (first == 0 && !isblank(c)) {
|
|
|
|
first = c|0x20;
|
2001-03-16 22:47:14 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2009-10-27 08:49:04 +00:00
|
|
|
return first == 'y';
|
2003-03-19 09:13:01 +00:00
|
|
|
}
|