diff options
Diffstat (limited to 'include')
-rw-r--r-- | include/conda.h | 2 | ||||
-rw-r--r-- | include/ini.h | 8 |
2 files changed, 9 insertions, 1 deletions
diff --git a/include/conda.h b/include/conda.h index cea3f02..d439371 100644 --- a/include/conda.h +++ b/include/conda.h @@ -89,7 +89,7 @@ int conda_activate(const char *root, const char *env_name); /** * Configure the active conda installation for headless operation */ -void conda_setup_headless(); +int conda_setup_headless(); /** * Creates a Conda environment from a YAML config 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 |