package obytelib

  1. Overview
  2. Docs
type entry = {
  1. section : Section.t;
  2. offset : int;
  3. length : int;
}
type t = entry list
val read : in_channel -> t
val write : out_channel -> t -> unit
val find_section : t -> Section.t -> int * int
val print : out_channel -> t -> unit