module Inputs: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
val input_channel : t -> stringget all contents from an input channel
val input_lines : t -> string listreturns the list of lines from an input channel
val lines : t -> string listsame than input_lines
val lines_of_file : string -> string listreturns the list of lines from a file
val input_line_opt : t -> string optionreturns one line from the input channel
or None if the end of file is reached
val line : t -> string optionsame than input_line_opt