diff options
Diffstat (limited to 'src/til_settings.c')
-rw-r--r-- | src/til_settings.c | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/src/til_settings.c b/src/til_settings.c index 30156d6..152060d 100644 --- a/src/til_settings.c +++ b/src/til_settings.c @@ -226,6 +226,15 @@ int til_settings_add_value(til_settings_t *settings, const char *key, const char } +void til_settings_reset_descs(til_settings_t *settings) +{ + assert(settings); + + for (unsigned i = 0; i < settings->num; i++) + settings->settings[i]->desc = NULL; +} + + /* apply the supplied setting description generators to the supplied settings */ /* returns 0 when input settings are complete */ /* returns 1 when input settings are incomplete, storing the next setting's description needed in *next_setting */ |