Module Femtolib.Config_file.Raw


module Raw: sig .. end


type cp =
| String of string
| Int of int
| Float of float
| List of cp list
| Tuple of cp list
| Section of (string * cp) list
module Parse: sig .. end
val save : Format.formatter -> cp -> unit
val to_channel : Pervasives.out_channel -> cp -> unit
val of_string : string -> cp
val of_channel : Pervasives.in_channel -> (string * cp) list