aboutsummaryrefslogtreecommitdiffstats
path: root/src/blind-write-head.c
diff options
context:
space:
mode:
authorMattias Andrée <maandree@kth.se>2017-01-13 09:05:08 +0100
committerMattias Andrée <maandree@kth.se>2017-01-13 09:05:08 +0100
commit4674ec0e4b833ab0d0365225ba99228df14abe87 (patch)
tree1b89fe1559fc9a2422e20048700e694a72d17751 /src/blind-write-head.c
parentvu-from-video: fix Y'UV encoding + add vu-to-video (diff)
downloadblind-4674ec0e4b833ab0d0365225ba99228df14abe87.tar.gz
blind-4674ec0e4b833ab0d0365225ba99228df14abe87.tar.bz2
blind-4674ec0e4b833ab0d0365225ba99228df14abe87.tar.xz
Rename to blind
Signed-off-by: Mattias Andrée <maandree@kth.se>
Diffstat (limited to 'src/blind-write-head.c')
-rw-r--r--src/blind-write-head.c18
1 files changed, 18 insertions, 0 deletions
diff --git a/src/blind-write-head.c b/src/blind-write-head.c
new file mode 100644
index 0000000..9e7c4a3
--- /dev/null
+++ b/src/blind-write-head.c
@@ -0,0 +1,18 @@
+/* See LICENSE file for copyright and license details. */
+#include "util.h"
+
+USAGE("parameters ...")
+
+int
+main(int argc, char *argv[])
+{
+ ENOFLAGS(!argc);
+
+ printf("%s", *argv++);
+ while (*argv)
+ printf(" %s", *argv++);
+ printf("\n%cuivf", 0);
+
+ efshut(stdout, "<stdout>");
+ return 0;
+}