summaryrefslogtreecommitdiff
path: root/src/options/honey_options.h
blob: 5f4adedd1486e838b83a432b247a01ecf7139085 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#ifndef HONEY_OPTIONS_H
#define HONEY_OPTIONS_H

#include "logging/logging.h"

struct honey_options {
   const char *main_script;
   enum honey_log_level_t log_level;
   int display_help;
};

int parse_options(struct honey_options *opts, int argc, char **argv);

#endif