Improve error checking. Add partial support for verbose output

This commit is contained in:
Dr-Noob
2020-06-20 19:21:07 +02:00
parent b81d611282
commit 6ad5f65c34
6 changed files with 61 additions and 19 deletions

View File

@@ -1,11 +1,13 @@
#ifndef __ARGS__
#define __ARGS__
#include <stdbool.h>
#include "printer.h"
int parseArgs(int argc, char* argv[]);
STYLE getStyle();
int showHelp();
int showVersion();
bool verbose_enabled();
#endif