(index ("config" 0) ("config-section" 42) ("make-config*" 100) ("make-config" 194) ("free-config!" 331) ("config-section-add!" 433) ("config-value-set!" 560) ("config-comment-add!" 719) ("config-value" 873) ("load-config*" 1007) ("load-config" 1111) ("load-config-from-file*" 1258) ("load-config-from-file" 1382) ("config-save" 1549) ("config-save-to-file" 1658) ("config-merge!" 1783) ("config-merge" 1897) ("config-sections" 2004) ("config-entries" 2284))
(def (sig (record "config" (id config))))
(def (sig (record "config-section" (id config-section))))
(def (sig (procedure "(make-config*)" (id make-config*))) (p "Implements al_create_config."))
(def (sig (procedure "(make-config)" (id make-config))) (p "Implements al_create_config, with (free-config!) declared as a finalizer."))
(def (sig (procedure "(free-config! config)" (id free-config!))) (p "Implements al_destroy_config."))
(def (sig (procedure "(config-section-add! config string)" (id config-section-add!))) (p "Implements al_add_config_section."))
(def (sig (procedure "(config-value-set! config (string section) (string key) (string value))" (id config-value-set!))) (p "Implements al_set_config_value."))
(def (sig (procedure "(config-comment-add! config (string section) (string comment))" (id config-comment-add!))) (p "Implements al_add_config_comment."))
(def (sig (procedure "(config-value config (string section) (string key))" (id config-value))) (p "Implements al_get_config_value."))
(def (sig (procedure "(load-config* string)" (id load-config*))) (p "Implements al_load_config_file."))
(def (sig (procedure "(load-config string)" (id load-config))) (p "Implements al_load_config_file, with (free-config!) decalred as a finalizer."))
(def (sig (procedure "(load-config-from-file* file)" (id load-config-from-file*))) (p "Implements al_load_config_file_f."))
(def (sig (procedure "(load-config-from-file file)" (id load-config-from-file))) (p "Implements al_load_config_file_f, with (free-config!) declared as a finalizer."))
(def (sig (procedure "(config-save config string)" (id config-save))) (p "Implements al_save_config_file."))
(def (sig (procedure "(config-save-to-file config file)" (id config-save-to-file))) (p "Implements al_save_config_file_f."))
(def (sig (procedure "(config-merge! config config)" (id config-merge!))) (p "Implements al_merge_config_into."))
(def (sig (procedure "(config-merge config config)" (id config-merge))) (p "Implements al_merge_config."))
(def (sig (procedure "(config-sections config)" (id config-sections))) (p "Creates an iterator that covers the sections of the given config.") (p "Returns values of the form (list config-section promise).") (p "(force) the promise to get the next section.") (p "Needs testing!"))
(def (sig (procedure "(config-entries config config-section)" (id config-entries))) (p "Creates an iterator that covers the entries of the given config and config-section.") (p "Returns values of the form (list config-entry promise).") (p "(force) the promise to get the next entry.") (p "Needs testing!"))
