├── .gitignore ├── CHANGES.md ├── LICENSE.md ├── Makefile ├── README.md ├── bwrap.opam ├── config ├── discover.ml └── dune ├── dune-project ├── src ├── bwrap.ml ├── bwrap.mli └── dune └── test ├── dune └── test_fs.ml /.gitignore: -------------------------------------------------------------------------------- 1 | .merlin 2 | _build 3 | *.install 4 | Refs.org 5 | -------------------------------------------------------------------------------- /CHANGES.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chris00/ocaml-bwrap/HEAD/CHANGES.md -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chris00/ocaml-bwrap/HEAD/LICENSE.md -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chris00/ocaml-bwrap/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chris00/ocaml-bwrap/HEAD/README.md -------------------------------------------------------------------------------- /bwrap.opam: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chris00/ocaml-bwrap/HEAD/bwrap.opam -------------------------------------------------------------------------------- /config/discover.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chris00/ocaml-bwrap/HEAD/config/discover.ml -------------------------------------------------------------------------------- /config/dune: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chris00/ocaml-bwrap/HEAD/config/dune -------------------------------------------------------------------------------- /dune-project: -------------------------------------------------------------------------------- 1 | (lang dune 1.0) 2 | 3 | (name bwrap) 4 | -------------------------------------------------------------------------------- /src/bwrap.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chris00/ocaml-bwrap/HEAD/src/bwrap.ml -------------------------------------------------------------------------------- /src/bwrap.mli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chris00/ocaml-bwrap/HEAD/src/bwrap.mli -------------------------------------------------------------------------------- /src/dune: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chris00/ocaml-bwrap/HEAD/src/dune -------------------------------------------------------------------------------- /test/dune: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chris00/ocaml-bwrap/HEAD/test/dune -------------------------------------------------------------------------------- /test/test_fs.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chris00/ocaml-bwrap/HEAD/test/test_fs.ml --------------------------------------------------------------------------------