/
githubmirror
/
libeconf
Обзор
Документация
Войти
/
githubmirror
/
libeconf
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
lib/libeconf.c
875 строк
24 KB
Stefan Schubert
Split man pages (#244)
08 дек 2025, 18:12
Не верифицирован
08 дек 2025, 18:12
8b8507b
Код
Авторство
О чём код?
/* Copyright (C) 2019 SUSE LLC Author: Pascal Arlt <parlt@suse.com> Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. */ #include "libeconf.h" #include "defines.h" #include "getfilecontents.h" #include "helpers.h" #include "keyfile.h" #include "mergefiles.h" #include "readconfig.h" #include <errno.h> #include <limits.h> #include <stdio.h> #include <string.h> #include <dirent.h> #include <sys/stat.h> #define PARSING_DIRS "PARSING_DIRS=" #define CONFIG_DIRS "CONFIG_DIRS=" #define ROOT_PREFIX "ROOT_PREFIX=" // configuration directories format static char **conf_dirs = {NULL}; // see econf_set_conf_dirs static int conf_count = 0; void econf_requireOwner(uid_t owner) { file_owner_set = true; file_owner = owner; } void econf_requireGroup(gid_t group) { file_group_set = true; file_group = group; } void econf_requirePermissions(mode_t file_perms, mode_t dir_perms) { file_permissions_set = true; file_perms_file = file_perms; file_perms_dir = dir_perms; } void econf_followSymlinks(bool allow) { allow_follow_symlinks = allow; } void econf_reset_security_settings(void) { file_owner_set = false; file_group_set = false; file_permissions_set = false; allow_follow_symlinks = true; } econf_err econf_set_conf_dirs(const char **dir_postfix_list) { // free old entry if (conf_dirs) econf_freeArray(conf_dirs); conf_count = 0; const char **tmp = dir_postfix_list; while (*tmp++) conf_count++; conf_dirs = malloc(sizeof(char *) * (conf_count+1)); if (!conf_dirs) return ECONF_NOMEM; conf_dirs[conf_count]=NULL; for (int i = 0; i < conf_count; i++) { conf_dirs[i] = strdup(dir_postfix_list[i]); } return ECONF_SUCCESS; } // Create a new econf_file. Allocation is based on // KEY_FILE_DEFAULT_LENGTH defined in include/defines.h econf_err econf_newKeyFile(econf_file **result, char delimiter, char comment) { econf_file *key_file = calloc(1, sizeof(econf_file)); if (key_file == NULL) return ECONF_NOMEM; key_file->alloc_length = KEY_FILE_DEFAULT_LENGTH; key_file->length = 0; key_file->delimiter = delimiter; key_file->comment = comment; key_file->join_same_entries = false; key_file->python_style = false; key_file->parse_dirs = NULL; key_file->parse_dirs_count = 0; key_file->conf_dirs = NULL; key_file->conf_count = 0; key_file->groups = NULL; key_file->group_count = 0; key_file->file_entry = malloc(KEY_FILE_DEFAULT_LENGTH * sizeof(struct file_entry)); if (key_file->file_entry == NULL) { free (key_file); return ECONF_NOMEM; } for (size_t i = 0; i < KEY_FILE_DEFAULT_LENGTH; i++) initialize(key_file, i); *result = key_file; return ECONF_SUCCESS; } // Create a new econf_file defined by options and without pre initialized entries. econf_err econf_newKeyFile_with_options(econf_file **result, const char *options) { *result = calloc(1, sizeof(econf_file)); if (*result == NULL) return ECONF_NOMEM; (*result)->alloc_length = 0; (*result)->length = 0; (*result)->join_same_entries = false; (*result)->python_style = false; (*result)->parse_dirs = NULL; (*result)->parse_dirs_count = 0; (*result)->conf_dirs = NULL; (*result)->conf_count = 0; (*result)->groups = NULL; (*result)->group_count = 0; (*result)->root_prefix = NULL; if (options == NULL || strlen(options) == 0) return ECONF_SUCCESS; char* in_opt = strdup(options); char* begin_opt = in_opt; char* o_opt; while ((o_opt = strsep(&in_opt, ";")) != NULL) { if (strcmp(o_opt, "JOIN_SAME_ENTRIES=1") == 0) { (*result)->join_same_entries = true; continue; } if (strcmp(o_opt, "PYTHON_STYLE=1") == 0) { (*result)->python_style = true; continue; } if (strncmp(o_opt, PARSING_DIRS, strlen(PARSING_DIRS)) == 0) { (*result)->parse_dirs = malloc(sizeof(char *)); if ((*result)->parse_dirs == NULL) return ECONF_NOMEM; char* in_entry = strdup(o_opt + strlen(PARSING_DIRS)); char* begin_entry = in_entry; char* o_entry; while ((o_entry = strsep(&in_entry, ":")) != NULL) { (*result)->parse_dirs = realloc((*result)->parse_dirs, (++(*result)->parse_dirs_count+1) * sizeof(char *)); if ((*result)->parse_dirs == NULL) return ECONF_NOMEM; (*result)->parse_dirs[(*result)->parse_dirs_count-1] = strdup(o_entry); } (*result)->parse_dirs[(*result)->parse_dirs_count] = NULL; free (begin_entry); continue; } if (strncmp(o_opt, CONFIG_DIRS, strlen(CONFIG_DIRS)) == 0) { (*result)->conf_dirs = malloc(sizeof(char *)); if ((*result)->conf_dirs == NULL) return ECONF_NOMEM; char* in_entry = strdup(o_opt + strlen(CONFIG_DIRS)); char* begin_entry = in_entry; char* o_entry; while ((o_entry = strsep(&in_entry, ":")) != NULL) { (*result)->conf_dirs = realloc((*result)->conf_dirs, (++(*result)->conf_count+1) * sizeof(char *)); if ((*result)->conf_dirs == NULL) return ECONF_NOMEM; (*result)->conf_dirs[(*result)->conf_count-1] = strdup(o_entry); } (*result)->conf_dirs[(*result)->conf_count] = NULL; free (begin_entry); continue; } if (strncmp(o_opt, ROOT_PREFIX, strlen(ROOT_PREFIX)) == 0) { (*result)->root_prefix = strdup(o_opt + strlen(ROOT_PREFIX)); continue; } /* not found --> break */ free(begin_opt); return ECONF_OPTION_NOT_FOUND; } free (begin_opt); return ECONF_SUCCESS; } econf_err econf_newIniFile(econf_file **result) { return econf_newKeyFile(result, '=', '#'); } char econf_comment_tag(econf_file *key_file) { if (key_file == NULL) return '\0'; return key_file->comment; } char econf_delimiter_tag(econf_file *key_file) { if (key_file == NULL) return '\0'; return key_file->delimiter; } void econf_set_comment_tag(econf_file *key_file, const char comment) { if (key_file == NULL) return; key_file->comment = comment; } void econf_set_delimiter_tag(econf_file *key_file, const char delimiter) { if (key_file == NULL) return; key_file->delimiter = delimiter; } // Process the file of the given file_name and save its contents into key_file econf_err econf_readFileWithCallback(econf_file **key_file, const char *file_name, const char *delim, const char *comment, bool (*callback)(const char *filename, const void *data), const void *callback_data) { econf_err t_err; if ((t_err = econf_newKeyFile_with_options(key_file, "")) != ECONF_SUCCESS) { return t_err; } t_err = read_file_with_callback(key_file, file_name, delim, comment, callback, callback_data); if (t_err != ECONF_SUCCESS) { *key_file = econf_freeFile(*key_file); } return t_err; } econf_err econf_readFile(econf_file **key_file, const char *file_name, const char *delim, const char *comment) { return econf_readFileWithCallback(key_file, file_name, delim, comment, NULL, NULL); } // Merge the contents of two key files econf_err econf_mergeFiles(econf_file **merged_file, econf_file *usr_file, econf_file *etc_file) { if (merged_file == NULL || usr_file == NULL || etc_file == NULL) { *merged_file = NULL; return ECONF_ARGUMENT_IS_NULL_VALUE; } *merged_file = calloc(1, sizeof(econf_file)); if (*merged_file == NULL) return ECONF_NOMEM; (*merged_file)->delimiter = usr_file->delimiter; (*merged_file)->comment = usr_file->comment; (*merged_file)->path = NULL; (*merged_file)->length = 0; (*merged_file)->alloc_length = 0; (*merged_file)->file_entry = NULL; if((etc_file->length + usr_file->length)<= 0) { /* nothing to merge */ return ECONF_SUCCESS; } struct file_entry *fe = malloc((etc_file->length + usr_file->length) * sizeof(struct file_entry)); if (fe == NULL) { free (*merged_file); *merged_file = NULL; return ECONF_NOMEM; } size_t merge_length = 0; if ((etc_file->file_entry == NULL || !strcmp(etc_file->file_entry->group, KEY_FILE_NULL_VALUE)) && (usr_file->file_entry == NULL || strcmp(usr_file->file_entry->group, KEY_FILE_NULL_VALUE))) { merge_length = insert_nogroup(*merged_file, &fe, etc_file); } merge_length = merge_existing_groups(*merged_file,&fe, usr_file, etc_file, merge_length); merge_length = add_new_groups(*merged_file, &fe, usr_file, etc_file, merge_length); (*merged_file)->length = merge_length; (*merged_file)->alloc_length = merge_length; (*merged_file)->file_entry = fe; return ECONF_SUCCESS; } econf_err econf_readConfigWithCallback(econf_file **key_file, const char *project, const char *usr_subdir, const char *config_name, const char *config_suffix, const char *delim, const char *comment, bool (*callback)(const char *filename, const void *data), const void *callback_data) { char *usr_dir = NULL; char *run_dir = NULL; char *etc_dir = NULL; econf_err ret = ECONF_SUCCESS; int init_keyfile = 0; if (*key_file == NULL) { if ((ret = econf_newKeyFile_with_options(key_file, "")) != ECONF_SUCCESS) return ret; init_keyfile = 1; } if (config_name == NULL || strlen(config_name) == 0) { /* Drop-ins without Main Configuration File. */ /* e.g. parsing /usr/lib/<project>.d/a.conf, /usr/lib/<project>.d/b.conf and /etc/<project>.d/c.conf */ /* https://uapi-group.org/specifications/specs/configuration_files_specification/#drop-ins-without-main-configuration-file */ config_name = project; project = NULL; if ((*key_file)->conf_count > 0) econf_freeArray((*key_file)->conf_dirs); (*key_file)->conf_count = 1; (*key_file)->conf_dirs = calloc((*key_file)->conf_count +1, sizeof(char *)); (*key_file)->conf_dirs[(*key_file)->conf_count] = NULL; (*key_file)->conf_dirs[0] = strdup(".d"); } if (usr_subdir == NULL) usr_subdir = ""; int re = 0; if ((*key_file)->root_prefix) { if (project != NULL) { re = asprintf(&usr_dir, "%s/%s/%s", (*key_file)->root_prefix, usr_subdir, project); } else { re = asprintf(&usr_dir, "%s%s", (*key_file)->root_prefix, usr_subdir); } } else { if (project != NULL) { re = asprintf(&usr_dir, "%s/%s", usr_subdir, project); } else { re = asprintf(&usr_dir, "%s", usr_subdir); } } if (re < 0) return ECONF_NOMEM; if ((*key_file)->root_prefix) { if (project != NULL) { re = asprintf(&run_dir, "%s/%s/%s", (*key_file)->root_prefix, DEFAULT_RUN_SUBDIR, project); } else { re = asprintf(&run_dir, "%s%s", (*key_file)->root_prefix, DEFAULT_RUN_SUBDIR); } } else { if (project != NULL) { re = asprintf(&run_dir, "%s/%s", DEFAULT_RUN_SUBDIR, project); } else { re = asprintf(&run_dir, "%s", DEFAULT_RUN_SUBDIR); } } if (re < 0) { free(usr_dir); return ECONF_NOMEM; } if ((*key_file)->root_prefix) { if (project != NULL) { re = asprintf(&etc_dir, "%s/%s/%s", (*key_file)->root_prefix, DEFAULT_ETC_SUBDIR, project); } else { re = asprintf(&etc_dir, "%s%s", (*key_file)->root_prefix, DEFAULT_ETC_SUBDIR); } } else { if (project != NULL) { re = asprintf(&etc_dir, "%s/%s", DEFAULT_ETC_SUBDIR, project); } else { re = asprintf(&etc_dir, "%s", DEFAULT_ETC_SUBDIR); } } if (re < 0) { free(usr_dir); free(run_dir); return ECONF_NOMEM; } if ((*key_file)->parse_dirs_count == 0) { /* taking default */ (*key_file)->parse_dirs_count = 3; (*key_file)->parse_dirs = calloc((*key_file)->parse_dirs_count +1, sizeof(char *)); (*key_file)->parse_dirs[(*key_file)->parse_dirs_count] = NULL; (*key_file)->parse_dirs[0] = strdup(usr_dir); (*key_file)->parse_dirs[1] = strdup(run_dir); (*key_file)->parse_dirs[2] = strdup(etc_dir); } ret = readConfigWithCallback(key_file, config_name, config_suffix, delim, comment, conf_dirs, conf_count, callback, callback_data); if (init_keyfile && ret != ECONF_SUCCESS) *key_file = econf_free(*key_file); free(usr_dir); free(run_dir); free(etc_dir); return ret; } econf_err econf_readConfig (econf_file **key_file, const char *project, const char *usr_subdir, const char *config_name, const char *config_suffix, const char *delim, const char *comment) { return econf_readConfigWithCallback(key_file, project, usr_subdir, config_name, config_suffix, delim, comment, NULL, NULL); } econf_err econf_readDirsHistoryWithCallback(econf_file ***key_files, size_t *size, const char *dist_conf_dir, const char *etc_conf_dir, const char *config_name, const char *config_suffix, const char *delim, const char *comment, bool (*callback)(const char *filename, const void *data), const void *callback_data) { int count = 2; char **parse_dirs = calloc(count+1, sizeof(char *)); parse_dirs[count] = NULL; if (dist_conf_dir) parse_dirs[0] = strdup(dist_conf_dir); else parse_dirs[0] = strdup(""); if (etc_conf_dir) parse_dirs[1] = strdup(etc_conf_dir); else parse_dirs[1] = strdup(""); econf_err ret = readConfigHistoryWithCallback(key_files, size, parse_dirs, count, config_name, config_suffix, delim, comment, false, false, /*join_same_entries, python_style*/ conf_dirs, conf_count, callback, callback_data); parse_dirs = econf_freeArray(parse_dirs); return ret; } econf_err econf_readDirsHistory(econf_file ***key_files, size_t *size, const char *dist_conf_dir, const char *etc_conf_dir, const char *config_name, const char *config_suffix, const char *delim, const char *comment) { int count = 2; char **parse_dirs = calloc(count+1, sizeof(char *)); parse_dirs[count] = NULL; if (dist_conf_dir) parse_dirs[0] = strdup(dist_conf_dir); else parse_dirs[0] = strdup(""); if (etc_conf_dir) parse_dirs[1] = strdup(etc_conf_dir); else parse_dirs[1] = strdup(""); econf_err ret = readConfigHistoryWithCallback(key_files, size, parse_dirs, count, config_name, config_suffix, delim, comment, false, false, /*join_same_entries, python_style*/ conf_dirs, conf_count, NULL, NULL); parse_dirs = econf_freeArray(parse_dirs); return ret; } econf_err econf_readDirsWithCallback(econf_file **result, const char *dist_conf_dir, const char *etc_conf_dir, const char *config_name, const char *config_suffix, const char *delim, const char *comment, bool (*callback)(const char *filename, const void *data), const void *callback_data) { econf_err ret; if ((ret = econf_newKeyFile_with_options(result, "")) != ECONF_SUCCESS) return ret; (*result)->parse_dirs_count = 2; (*result)->parse_dirs = calloc((*result)->parse_dirs_count+1, sizeof(char *)); (*result)->parse_dirs[(*result)->parse_dirs_count] = NULL; if (dist_conf_dir) (*result)->parse_dirs[0] = strdup(dist_conf_dir); else (*result)->parse_dirs[0] = strdup(""); if (etc_conf_dir) (*result)->parse_dirs[1] = strdup(etc_conf_dir); else (*result)->parse_dirs[1] = strdup(""); return readConfigWithCallback(result, config_name, config_suffix, delim, comment, conf_dirs, conf_count, callback, callback_data); } econf_err econf_readDirs(econf_file **result, const char *dist_conf_dir, const char *etc_conf_dir, const char *config_name, const char *config_suffix, const char *delim, const char *comment) { econf_err ret; if ((ret = econf_newKeyFile_with_options(result, "")) != ECONF_SUCCESS) return ret; (*result)->parse_dirs_count = 2; (*result)->parse_dirs = calloc((*result)->parse_dirs_count+1, sizeof(char *)); (*result)->parse_dirs[(*result)->parse_dirs_count] = NULL; if (dist_conf_dir) (*result)->parse_dirs[0] = strdup(dist_conf_dir); else (*result)->parse_dirs[0] = strdup(""); if (etc_conf_dir) (*result)->parse_dirs[1] = strdup(etc_conf_dir); else (*result)->parse_dirs[1] = strdup(""); return readConfigWithCallback(result, config_name, config_suffix, delim, comment, conf_dirs, conf_count, NULL, NULL); } // Write content of an econf_file struct to specified location econf_err econf_writeFile(econf_file *key_file, const char *save_to_dir, const char *file_name) { if (!key_file) return ECONF_ARGUMENT_IS_NULL_VALUE; /* Checking if the directory exists*/ struct stat stats; if (stat(save_to_dir, &stats) < 0) { if (errno == ENOENT) return ECONF_NOFILE; else return ECONF_ERROR; } if (!S_ISDIR(stats.st_mode)) return ECONF_NOFILE; // Create a file handle for the specified file char *save_to = combine_strings(save_to_dir, file_name, '/'); if (save_to == NULL) return ECONF_NOMEM; FILE *kf = fopen(save_to, "w"); if (kf == NULL) { free(save_to); return ECONF_WRITEERROR; } // Write to file for (size_t i = 0; i < key_file->length; i++) { // Writing group if (!i || strcmp(key_file->file_entry[i - 1].group, key_file->file_entry[i].group)) { if (i) fprintf(kf, "\n"); if (strcmp(key_file->file_entry[i].group, KEY_FILE_NULL_VALUE)) { char *group = addbrackets(key_file->file_entry[i].group); fprintf(kf, "%s\n", group); free(group); } } // Writing heading comments if (key_file->file_entry[i].comment_before_key && strlen(key_file->file_entry[i].comment_before_key) > 0) { char buf[BUFSIZ]; char *line; char *value_string = buf; strncpy(buf,key_file->file_entry[i].comment_before_key,BUFSIZ-1); buf[BUFSIZ-1] = '\0'; while ((line = strsep(&value_string, "\n")) != NULL) { fprintf(kf, "%c%s\n", key_file->comment, line); } } // Writing values fprintf(kf, "%s%c", key_file->file_entry[i].key, key_file->delimiter); if (key_file->file_entry[i].value != NULL) { if (key_file->file_entry[i].quotes) fprintf(kf, "\"%s\"", key_file->file_entry[i].value); else fprintf(kf, "%s", key_file->file_entry[i].value); } // Writing rest of comments if (key_file->file_entry[i].comment_after_value && strlen(key_file->file_entry[i].comment_after_value) > 0) { char buf[BUFSIZ]; char *line; char *value_string = buf; strncpy(buf,key_file->file_entry[i].comment_after_value,BUFSIZ-1); buf[BUFSIZ-1] = '\0'; while ((line = strsep(&value_string, "\n")) != NULL) { fprintf(kf, " %c%s\n", key_file->comment, line); } } fprintf(kf, "\n"); } // Clean up free(save_to); fclose(kf); return ECONF_SUCCESS; } extern char *econf_getPath(econf_file *kf) { if (kf->path == NULL) return strdup(""); return strdup(kf->path); } /* GETTER FUNCTIONS */ econf_err econf_getGroups(econf_file *kf, size_t *length, char ***groups) { if (!kf || groups == NULL || length == NULL) return ECONF_ARGUMENT_IS_NULL_VALUE; if (kf->group_count <= 0) return ECONF_NOGROUP; *groups = NULL; *length = 0; for (int i = 0; i < kf->group_count; i++) { if (strcmp(kf->groups[i], KEY_FILE_NULL_VALUE)) { (*length)++; *groups = realloc(*groups, (*length +1) * sizeof(char *)); if (*groups == NULL) return ECONF_NOMEM; (*groups)[*length] = NULL; (*groups)[*length-1] = strdup(kf->groups[i]); if ((*groups)[*length-1] == NULL) return ECONF_NOMEM; } } return ECONF_SUCCESS; } econf_err econf_getKeys(econf_file *kf, const char *grp, size_t *length, char ***keys) { if (length != NULL) *length = 0; /* initialize */ if (!kf || keys == NULL) return ECONF_ARGUMENT_IS_NULL_VALUE; size_t tmp = 0; char *group = (!grp || !*grp) ? strdup(KEY_FILE_NULL_VALUE) : strdup(grp); if (group == NULL) return ECONF_NOMEM; bool *uniques = calloc(kf->length, sizeof(bool)); if (uniques == NULL) { free(group); return ECONF_NOMEM; } for (size_t i = 0; i < kf->length; i++) { if (!strcmp(kf->file_entry[i].group, group)) { uniques[i] = 1; tmp++; } } free(group); if (!tmp) { free (uniques); return ECONF_NOKEY; } *keys = calloc(tmp + 1, sizeof(char*)); if (*keys == NULL) { free (uniques); return ECONF_NOMEM; } for (size_t i = 0, j = 0; i < kf->length; i++) if (uniques[i]) (*keys)[j++] = strdup(kf->file_entry[i].key); if (length != NULL) *length = tmp; free(uniques); return ECONF_SUCCESS; } /* The econf_get*Value functions are identical except for result value type, so let's create them via a macro. */ #define econf_getValue(FCT_TYPE, TYPE) \ econf_err econf_get ## FCT_TYPE ## Value(econf_file *kf, const char *group, \ const char *key, TYPE *result) { \ if (!kf) \ return ECONF_ERROR; \ \ size_t num; \ char *grp = group ? strdup(group) : NULL; \ econf_err error = find_key(*kf, stripbrackets(grp), key, &num); \ free(grp); \ if (error) \ return error; \ if (result == NULL) \ return ECONF_ARGUMENT_IS_NULL_VALUE; \ return get ## FCT_TYPE ## ValueNum(*kf, num, result); \ } econf_getValue(Int, int32_t) econf_getValue(Int64, int64_t) econf_getValue(UInt, uint32_t) econf_getValue(UInt64, uint64_t) econf_getValue(Float, float) econf_getValue(Double, double) econf_getValue(String, char *) econf_getValue(Bool, bool) /* SETTER FUNCTIONS */ /* The econf_set*Value functions are identical except for set value type, so let's create them via a macro. */ #define libeconf_setValue(TYPE, VALTYPE, VALARG) \ econf_err econf_set ## TYPE ## Value(econf_file *kf, const char *group, \ const char *key, VALTYPE value) { \ if (!kf) \ return ECONF_FILE_LIST_IS_NULL; \ if (!key || strlen(key)<= 0) \ return ECONF_EMPTYKEY; \ char *grp = group ? strdup(group) : NULL; \ econf_err ret = setKeyValue(set ## TYPE ## ValueNum, kf, stripbrackets(grp), key, VALARG); \ free(grp); \ return ret; \ } libeconf_setValue(Int, int32_t, &value) libeconf_setValue(Int64, int64_t, &value) libeconf_setValue(UInt, uint32_t, &value) libeconf_setValue(UInt64, uint64_t, &value) libeconf_setValue(Float, float, &value) libeconf_setValue(Double, double, &value) libeconf_setValue(String, const char *, value) libeconf_setValue(Bool, const char *, value) /* --- DESTROY FUNCTIONS --- */ char **econf_freeArray(char** array) { if (!array) { return NULL; } char *tmp = (char*) array; while (*array) { free(*array++); } free(tmp); return NULL; } // Free memory allocated by key_file econf_file *econf_freeFile(econf_file *key_file) { if (!key_file) return NULL; if (key_file->file_entry) { for (size_t i = 0; i < key_file->alloc_length; i++) { free(key_file->file_entry[i].key); free(key_file->file_entry[i].value); free(key_file->file_entry[i].comment_before_key); free(key_file->file_entry[i].comment_after_value); } free(key_file->file_entry); } if (key_file->path) free(key_file->path); econf_freeArray(key_file->parse_dirs); econf_freeArray(key_file->groups); econf_freeArray(key_file->conf_dirs); free(key_file->root_prefix); free(key_file); return NULL; }