feat: added stuff to fc-cli.c

This commit is contained in:
Vitor Gonçalves 2023-05-28 20:47:56 -03:00
parent 37d6ac02d0
commit 1678c8f71a
Signed by: vitorg
GPG Key ID: B90BF113DF56EB41
1 changed files with 10 additions and 1 deletions

View File

@ -1,5 +1,14 @@
/*
* fc-cli - a command-line finance control program
* author: Vitor Gonçalves <vitorg at_symbol vern dot cc>
* license: GPLv3
* year: 2023
*
*/
#include <stdio.h>
int main() {
int main(int argc, char *argv[]) {
printf("fc-cli rocks!\n");
return 0;
}