sig
  module type INTERNAL =
    sig
      val enum : (string * int64) list -> 'Ctypes.typ -> unit
      val structure : 'Ctypes.structure Ctypes.typ -> unit
      val union : 'Ctypes.union Ctypes.typ -> unit
      val typedef : 'Ctypes.typ -> string -> unit
      val internal :
        ?runtime_lock:bool ->
        string -> ('-> 'b) Ctypes.fn -> ('-> 'b) -> unit
    end
  module type BINDINGS = functor (F : INTERNAL-> sig  end
  val write_c :
    Format.formatter ->
    prefix:string -> (module Cstubs_inverted.BINDINGS-> unit
  val write_c_header :
    Format.formatter ->
    prefix:string -> (module Cstubs_inverted.BINDINGS-> unit
  val write_ml :
    Format.formatter ->
    prefix:string -> (module Cstubs_inverted.BINDINGS-> unit
end