Frama_c_gui.CilconfigSourceReading 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 *
Load the configuration from a file
Save the configuration in a file. Overwrites the previous values
Clear all configuration data
Set a configuration element, with a key. Overwrites the previous values
Find a configuration elements, given a key. Raises Not_found if it cannot find it
Like findConfiguration but extracts the integer
Looks for an integer configuration element, and if it is found, it uses the given function. Otherwise, does nothing