src/Pure/General/xz.ML
author wenzelm
Thu, 15 Sep 2022 21:37:17 +0200
changeset 76166 dbafa8d688fb
parent 75621 aeb412065742
child 76183 8089593a364a
permissions -rw-r--r--
discontinued unclear timeout (stemming from jEdit JSch setup, see 14782d58a503), to make it work with native Windows ssh.exe;

(*  Title:      Pure/System/xz.ML
    Author:     Makarius

Support for XZ compression (via Isabelle/Scala).
*)

signature XZ =
sig
  val compress: Bytes.T -> Bytes.T
  val uncompress: Bytes.T -> Bytes.T
end;

structure XZ: XZ =
struct

val compress = \<^scala>\<open>XZ.compress\<close>;
val uncompress = \<^scala>\<open>XZ.uncompress\<close>;

end;