Frama-C API - Cilconfig
 Reading and storing configuration files from the filesystem. Currently only used in Frama-C's GUI.
Configuration
type configData = | ConfInt of int| ConfBool of bool| ConfFloat of float| ConfString of string| ConfList of configData list
The configuration data can be of several types *
val loadConfiguration : Frama_c_kernel.Filepath.t -> unitLoad the configuration from a file
val saveConfiguration : Frama_c_kernel.Filepath.t -> unitSave the configuration in a file. Overwrites the previous values
val setConfiguration : string -> configData -> unitSet a configuration element, with a key. Overwrites the previous values
val findConfiguration : string -> configDataFind a configuration elements, given a key. Raises Not_found if it cannot find it
Looks for an integer configuration element, and if it is found, it uses the given function. Otherwise, does nothing
val findConfigurationList : string -> configData listval useConfigurationList : string -> (configData list -> unit) -> unit