summaryrefslogtreecommitdiff
path: root/src/til_settings.h
diff options
context:
space:
mode:
authorVito Caputo <vcaputo@pengaru.com>2023-06-26 17:19:35 -0700
committerVito Caputo <vcaputo@pengaru.com>2023-07-04 21:09:16 -0700
commit3c5db5339454f48edb48c9b1498c1832c6711eb1 (patch)
tree2c371c67ffe963ac85904090d45e6f163781b8ee /src/til_settings.h
parenta33c742c87c5e267f00e561c27f96ddfb522f6bc (diff)
til_str: exclude \0 from res_len for til_str_buf()/til_str_to_buf()
It's more ergonomic more often to behave consistently with strlen() here, plus it's just the established mental model. While here I made til_settings_path_as_buf() private as nothing external uses it, it's essentially just a logically distinct private helper function from the public wrappers around it. Dragged into this changeset due to clarifying some naming/semantics as it's one of the few til_str_to_buf() callers. But nobody was actually passing a non-NULL res_bufsz/res_len to it anyways, as its use is minimal.
Diffstat (limited to 'src/til_settings.h')
-rw-r--r--src/til_settings.h1
1 files changed, 0 insertions, 1 deletions
diff --git a/src/til_settings.h b/src/til_settings.h
index 43bbee1..8cdaf88 100644
--- a/src/til_settings.h
+++ b/src/til_settings.h
@@ -62,7 +62,6 @@ int til_setting_desc_fprint_path(const til_setting_desc_t *desc, FILE *out);
int til_setting_spec_check(const til_setting_spec_t *spec, const char *value);
int til_settings_label_setting(const til_settings_t *settings, const til_setting_t *setting, char **res_label);
int til_settings_strprint_path(const til_settings_t *settings, til_str_t *str);
-int til_settings_path_as_buf(const til_settings_t *settings, char **res_buf, size_t *res_bufsz);
int til_settings_fprint_path(const til_settings_t *settings, FILE *out);
#ifndef TIL_SETTINGS_STR
© All Rights Reserved