save
This commit is contained in:
16
yait/main.c
16
yait/main.c
@@ -1,6 +1,18 @@
|
||||
#include "../lib/print.h"
|
||||
#include "core.h"
|
||||
|
||||
int main(void) {
|
||||
printfn("error: incomplete binary.");
|
||||
void create(format_t);
|
||||
|
||||
int main(int argc, char **argv) {
|
||||
if (argc < 2) {
|
||||
printfn("error: not enough arguments.");
|
||||
return 1;
|
||||
}
|
||||
format_t conf;
|
||||
conf.name = argv[1];
|
||||
conf.nogit = false;
|
||||
return 0;
|
||||
}
|
||||
|
||||
void create(format_t conf) {
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user