diff options
author | Joseph Hunkeler <jhunkeler@gmail.com> | 2024-07-13 12:23:51 -0400 |
---|---|---|
committer | Joseph Hunkeler <jhunkeler@gmail.com> | 2024-07-13 12:23:51 -0400 |
commit | ee2b67d95a865d753cd2587f4c9ae9322d0e8996 (patch) | |
tree | 126b2cf4d545de36e0439a4e972e8c7a2bb53590 | |
parent | 28929a1e33ab5f6f9c7aa841a0cd7c34760dd290 (diff) | |
download | stasis-ee2b67d95a865d753cd2587f4c9ae9322d0e8996.tar.gz |
Export ini_section_create() function
-rw-r--r-- | include/ini.h | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/include/ini.h b/include/ini.h index af2639b..7167cad 100644 --- a/include/ini.h +++ b/include/ini.h @@ -101,6 +101,14 @@ struct INIFILE *ini_open(const char *filename); struct INISection *ini_section_search(struct INIFILE **ini, unsigned mode, const char *value); /** + * + * @param ini + * @param key + * @return + */ +int ini_section_create(struct INIFILE **ini, char *key); + +/** * * @param ini * @param section |