Module Kwchan

module Kwchan: sig .. end

Input channels


Author(s): Keith Waclena

type src = {
   mutable opened : bool;
   c : Pervasives.in_channel option;
   s : string;
   mutable l : string list;
}
module Chan: sig .. end
module String: sig .. end
val getline : src -> string
val read : src -> string
val rewind : src -> unit