blob: 959606777ad23cb77db0b954cc478dda328bf80f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
#include <stdio.h>
#include "tdo.h"
void print_version() {
printf("tdo version 0.0.1\n");
}
void new_tdo(int argc, char** argv) {
printf("New todo: ");
// just in case not using quotes
for (int i=2; i<argc; ++i)
printf("%s ",argv[i]);
printf("\n");
}
|