Commit 090b61b2 authored by Stefano Sabatini's avatar Stefano Sabatini

Implement read_yesno().

Originally committed as revision 18037 to svn://svn.ffmpeg.org/ffmpeg/trunk
parent eab5168c
...@@ -472,3 +472,14 @@ void show_formats(void) ...@@ -472,3 +472,14 @@ void show_formats(void)
"decoder corresponds to the h263 and h263p encoders, for file formats it is even\n" "decoder corresponds to the h263 and h263p encoders, for file formats it is even\n"
"worse.\n"); "worse.\n");
} }
int read_yesno(void)
{
int c = getchar();
int yesno = (toupper(c) == 'Y');
while (c != '\n' && c != EOF)
c = getchar();
return yesno;
}
...@@ -152,4 +152,10 @@ void show_license(void); ...@@ -152,4 +152,10 @@ void show_license(void);
*/ */
void show_formats(void); void show_formats(void);
/**
* Returns a positive value if reads from standard input a line
* starting with [yY], otherwise returns 0.
*/
int read_yesno(void);
#endif /* FFMPEG_CMDUTILS_H */ #endif /* FFMPEG_CMDUTILS_H */
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment