[common] option: implement ability to dump config into ini

This is intended to be used for saving filter options into an ini file.
This commit is contained in:
Quantum
2021-08-27 02:30:17 -04:00
committed by Geoffrey McRae
parent e22a070dd3
commit f0624ccf89
2 changed files with 23 additions and 0 deletions

View File

@@ -22,6 +22,7 @@
#define _H_COMMON_OPTION_
#include <stdbool.h>
#include <stdio.h>
#include "common/stringlist.h"
enum OptionType
@@ -94,6 +95,9 @@ bool option_validate(void);
// print out the options, help, and their current values
void option_print(void);
// dump the options in ini format into the file
bool option_dump(FILE * file, const char * module);
// final cleanup
void option_free(void);