OSDN Git Service

Implement read_yesno().
authorStefano Sabatini <stefano.sabatini-lala@poste.it>
Wed, 18 Mar 2009 21:35:49 +0000 (21:35 +0000)
committerStefano Sabatini <stefano.sabatini-lala@poste.it>
Wed, 18 Mar 2009 21:35:49 +0000 (21:35 +0000)
Originally committed as revision 18037 to svn://svn.ffmpeg.org/ffmpeg/trunk

cmdutils.c
cmdutils.h

index 7c4a530..167d15a 100644 (file)
@@ -472,3 +472,14 @@ void show_formats(void)
 "decoder corresponds to the h263 and h263p encoders, for file formats it is even\n"
 "worse.\n");
 }
+
+int read_yesno(void)
+{
+    int c = getchar();
+    int yesno = (toupper(c) == 'Y');
+
+    while (c != '\n' && c != EOF)
+        c = getchar();
+
+    return yesno;
+}
index 959c3f7..e30ea0f 100644 (file)
@@ -152,4 +152,10 @@ void show_license(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 */