swissChili | 8efa492 | 2021-03-02 16:34:49 -0800 | [diff] [blame^] | 1 | #include <initrd/initrd.h> |
2 | #include <stdio.h> | ||||
3 | #include <string.h> | ||||
4 | |||||
5 | int main(int argc, char **argv) | ||||
6 | { | ||||
7 | if (argc == 1 || (argc > 1 && !strcmp(argv[1], "-h"))) | ||||
8 | { | ||||
9 | printf("%s <output> [input...]\n", argv[0]); | ||||
10 | return argc == 1; | ||||
11 | } | ||||
12 | |||||
13 | FILE *out = fopen(argv[1], "w"); | ||||
14 | } |