Age | Commit message (Collapse) | Author | |
---|---|---|---|
2021-06-06 | Moved `TYPE_NONE` to the start of `config_type`, and | mrb0nk500 | |
added `TYPE_COUNT` at the end of `config_type`. This is to allow for any iterators that need to count upto the total number of types to just to count up to `TYPE_COUNT`. | |||
2021-06-06 | Added a NULL entry to the end of `config_opts`. | mrb0nk500 | |
2021-06-06 | Added a new union called `config_val`. | mrb0nk500 | |
This is so that I don't have to cast the variable as a `void *`, and make it easier to read. I also added `TYPE_NONE` to the `config_type` enum for denoting that the config option doesn't take a value. | |||
2021-06-05 | Move the config option stuff into `config.h`. | mrb0nk500 | |