Sophie

Sophie

distrib > Mageia > 4 > x86_64 > by-pkgid > 199168df3fabe584b2d6b1a05ca44868 > files > 29

ocaml-otfm-devel-0.1.0-2.mga4.x86_64.rpm

(* This code is in the public domain *)

let otf_postscript_name bytes = 
  let d = Otfm.decoder (`String bytes) in
  match Otfm.postscript_name d with 
  | `Error e -> Format.eprintf "@[%a@]@." Otfm.pp_error e
  | `Ok (Some n) -> Format.printf "%s@." n;
  | `Ok None -> ()