From 308925f81dcac05471e818865a94061f3421f217 Mon Sep 17 00:00:00 2001 From: Clecio Jung Date: Thu, 23 Mar 2023 13:16:18 -0300 Subject: Simplifying memory management --- examples/ini_file_read.c | 2 ++ 1 file changed, 2 insertions(+) (limited to 'examples/ini_file_read.c') diff --git a/examples/ini_file_read.c b/examples/ini_file_read.c index 4f660ae..b54bebd 100644 --- a/examples/ini_file_read.c +++ b/examples/ini_file_read.c @@ -31,6 +31,8 @@ int main(const int argc, const char **const argv) { } printf("\nThe properties retrieved from the the ini file \"%s\" are:\n\n", argv[1]); ini_file_print_to(ini_file, stdout); + printf("\nCheck out this information of the INI file data structure:\n"); + ini_file_info(ini_file); ini_file_free(ini_file); return EXIT_SUCCESS; } -- cgit v1.2.3