Remove styles and add option to specify custom color output in RGB format

This commit is contained in:
Dr-Noob
2020-07-02 16:14:37 +02:00
parent ea338a68c8
commit 942a86c04f
6 changed files with 143 additions and 107 deletions

View File

@@ -2,13 +2,22 @@
#define __ARGS__
#include <stdbool.h>
#include "printer.h"
#include <stdint.h>
bool parse_args(int argc, char* argv[]);
STYLE get_style();
bool show_help();
bool show_levels();
bool show_version();
bool verbose_enabled();
struct color* get_color1();
struct color* get_color2();
struct color {
int32_t R;
int32_t G;
int32_t B;
};
#include "printer.h"
#endif