···277277/*!***************************************************************************
278278 * @short Read an ini tree from a file
279279 * @param fp A C style stream that must be open for reading
280280- * @return A pointer to the base section of the ini tree or NULL on error.
280280+ * @return True on error
281281 *****************************************************************************/
282282-ini_sct_t *ini_read_fp (FILE *fp, const char *fname);
282282+int ini_read_fp (ini_sct_t *sct, FILE *fp, const char *fname);
283283284284/*!***************************************************************************
285285 * @short Read an ini tree from a file
286286 * @param fname The file name
287287- * @return A pointer to the base section of the ini tree or NULL on error.
287287+ * @return True on error
288288 *****************************************************************************/
289289-ini_sct_t *ini_read (const char *fname);
289289+int ini_read (ini_sct_t *sct, const char *fname);
290290291291292292/*!***************************************************************************