mirror of
https://github.com/LIV2/RIDE.git
synced 2025-12-06 04:22:43 +00:00
18 lines
267 B
C
18 lines
267 B
C
#ifndef _CONFIG_H
|
|
#define _CONFIG_H
|
|
|
|
#include <stdbool.h>
|
|
#include <stdint.h>
|
|
|
|
typedef struct Config {
|
|
bool dryRun;
|
|
bool verbose;
|
|
bool mergeFastAndBonus;
|
|
int fastPriority;
|
|
|
|
} Config;
|
|
|
|
struct Config* Configure(int, char *[]);
|
|
void usage();
|
|
|
|
#endif |