From 429e46051dba814e7d6c74368eb1bba550222cbe Mon Sep 17 00:00:00 2001 From: Jonathan McCrohan Date: Thu, 1 Dec 2011 22:56:23 +0000 Subject: Imported Upstream version 1.4.8 --- samples/c/sample3.c | 104 ---------------------------------------------------- 1 file changed, 104 deletions(-) delete mode 100644 samples/c/sample3.c (limited to 'samples/c/sample3.c') diff --git a/samples/c/sample3.c b/samples/c/sample3.c deleted file mode 100644 index 22f5f36..0000000 --- a/samples/c/sample3.c +++ /dev/null @@ -1,104 +0,0 @@ -/************************************************************************* - ** Sample3 - ** Load sample.cfg and try to add a setting "foo".. - ** on success save to testfoo.cfg - *************************************************************************/ - -#include -#include - -/***************************************************************************/ - -/* - */ - -int print_path(config_setting_t *setting) -{ - if(setting) - { - const char *name = config_setting_name(setting); - - if(print_path(config_setting_parent(setting))) - putchar('.'); - - if(! config_setting_is_root(setting)) - { - if(! name) - printf("[%d]", config_setting_index(setting)); - else - printf(name); - - return(1); - } - } - - return(0); -} - -/* - */ - -int main() -{ - struct config_t cfg; - config_setting_t *setting = NULL; - int i; - - do - { - /* Initialize the configuration */ - config_init(&cfg); - - /* Load the file */ - printf("loading [sample.cfg]..."); - if (!config_read_file(&cfg, "sample.cfg")) - { - puts("failed"); - break; - } - - puts("ok"); - - /* Add setting "foo" */ - printf("add setting \"foo\"..."); - setting = config_setting_add(cfg.root, "foo", CONFIG_TYPE_INT); - if (!setting) - { - puts("failed"); - break; - } - - config_setting_set_int(setting, 1234); - puts("ok"); - - /** Look up an array element */ - printf("looking up array element..."); - setting = config_lookup(&cfg, "arrays.values.[0]"); - if(! setting) - { - puts("failed"); - break; - } - - printf("value is: %d\n", config_setting_get_int(setting)); - printf("path is: "); - print_path(setting); - putchar('\n'); - - /* Save to "samplefoo.cfg" */ - printf("saving [samplefoo.cfg]..."); - config_write_file(&cfg, "samplefoo.cfg"); - puts("ok"); - - puts("Done!"); - } - while(0); - - /* Free the configuration */ - config_destroy(&cfg); - - return 0; -} - - -/***************************************************************************/ -- cgit v1.2.3