From 232df43611df80153de43d1747b61c0da9f6c5c0 Mon Sep 17 00:00:00 2001 From: Vito Caputo Date: Fri, 28 Jul 2023 15:04:42 -0700 Subject: til_settings: add til_settings_get_label() getter Preparatory commit for rkt_scener scenes editing, which will be replacing the current scene's settings instance with a newly constructed one. This enables simply duplicating the existing scene setting's positional label, which will be identical in the replacement. --- src/til_settings.c | 8 ++++++++ 1 file changed, 8 insertions(+) (limited to 'src/til_settings.c') diff --git a/src/til_settings.c b/src/til_settings.c index be8457d..907e114 100644 --- a/src/til_settings.c +++ b/src/til_settings.c @@ -245,6 +245,14 @@ int til_settings_set_label(til_settings_t *settings, const char *label) } +const char * til_settings_get_label(const til_settings_t *settings) +{ + assert(settings); + + return settings->label; +} + + /* find key= in settings, return value NULL if missing, optionally store setting @res_setting if found */ const char * til_settings_get_value_by_key(const til_settings_t *settings, const char *key, til_setting_t **res_setting) { -- cgit v1.2.1