blind-write-head.c - blind - suckless command-line video editing utility
 (HTM) git clone git://git.suckless.org/blind
 (DIR) Log
 (DIR) Files
 (DIR) Refs
 (DIR) README
 (DIR) LICENSE
       ---
       blind-write-head.c (290B)
       ---
            1 /* See LICENSE file for copyright and license details. */
            2 #include "common.h"
            3 
            4 USAGE("parameters ...")
            5 
            6 int
            7 main(int argc, char *argv[])
            8 {
            9         UNOFLAGS(!argc);
           10 
           11         printf("%s", *argv++);
           12         while (*argv)
           13                 printf(" %s", *argv++);
           14         printf("\n%cuivf", 0);
           15 
           16         efshut(stdout, "<stdout>");
           17         return 0;
           18 }