unison

Fork of Unison, a bi-directional file synchronization tool
git clone git://git.laack.co/unison.git
Log | Files | Refs | README | LICENSE

external.mli (332B)


      1 (* Unison file synchronizer: src/external.mli *)
      2 (* Copyright 1999-2020, Benjamin C. Pierce (see COPYING for details) *)
      3 
      4 val runExternalProgram : string -> (Unix.process_status * string) Lwt.t
      5 val runExternalProgramArgs : string -> string array -> (Unix.process_status * string) Lwt.t
      6 val readChannelTillEof : in_channel -> string