Frama_c_kernel.CilconfigReading and storing configuration files from the filesystem. Currently only used in Frama-C's GUI.
type configData = | ConfInt of int| ConfBool of bool| ConfFloat of float| ConfString of string| ConfList of configData listThe configuration data can be of several types *
val loadConfiguration : Datatype.Filepath.t -> unitLoad the configuration from a file
val saveConfiguration : Datatype.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