Support for simple args options(currently, help and style). New feature to switch colors of logo, to improve visibility in bright terminals

This commit is contained in:
Dr-Noob
2018-06-21 15:30:29 +02:00
parent 5bf6cbf2c7
commit 7b059c046a
6 changed files with 186 additions and 19 deletions

10
args.h Normal file
View File

@@ -0,0 +1,10 @@
#ifndef __ARGS__
#define __ARGS__
#include "printer.h"
int parseArgs(int argc, char* argv[]);
STYLE getStyle();
int showHelp();
#endif