hamnet70/impl/src/options.h
Thomas Kolb 2e91fd7c42 Apply free software+documentation licenses
All code is now licensed under GPLv3+. The documentation is licensed under
CC BY-SA 4.0.

This is now officially free software! \o/
2024-08-23 11:53:40 +02:00

21 lines
326 B
C

/*
* SPDX-License-Identifier: GPL-3.0-or-later
*
* Copyright (C) 2024 Thomas Kolb
*/
#ifndef OPTIONS_H
#define OPTIONS_H
#include <stdbool.h>
typedef enum {
OPTIONS_FLAG_IS_CENTRAL_NODE,
} options_flag_t;
int options_parse(int argc, char **argv);
bool options_is_flag_set(options_flag_t flag);
#endif // OPTIONS_H