/***************************************************************************** * pce * *****************************************************************************/ /***************************************************************************** * File name: src/lib/cfg.c * * Created: 2019-01-06 by Hampa Hug * * Copyright: (C) 2019 Hampa Hug * *****************************************************************************/ /***************************************************************************** * This program is free software. You can redistribute it and / or modify it * * under the terms of the GNU General Public License version 2 as published * * by the Free Software Foundation. * * * * This program is distributed in the hope that it will be useful, but * * WITHOUT ANY WARRANTY, without even the implied warranty of * * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General * * Public License for more details. * *****************************************************************************/ #include "cfg.h" #include #include int pce_load_config (ini_sct_t *ini, const char *fname) { if (fname == NULL) { return (0); } pce_log_tag (MSG_INF, "CONFIG:", "file=\"%s\"\n", fname); if (ini_read (ini, fname)) { pce_log (MSG_ERR, "*** loading config file failed\n"); return (1); } return (0); }