RIDE/Software/addram/config.h
2024-12-31 14:41:07 +13:00

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