module Input:sig..end
typet =Stdlib.in_channel
val read_file : string -> stringloads the all content of the given file
val read_file_bin : string -> stringread binary file in a portable way for Windows
val input_channel : t -> stringget all contents from an input channel
val input_line : t -> string optionreturns one line from the input channel
or None if the end of file is reached
val input_lines : t -> string listreturns the list of lines from an input channel
val lines_of_file : string -> string listreturns the list of lines from a file
val line : t -> string optionsame than input_line
val lines : t -> string listsame than input_lines