├── .gitignore ├── .ocamlformat ├── CHANGES.md ├── CONTRIBUTING.md ├── LICENSE.md ├── Makefile ├── README.md ├── dune-project ├── src ├── dune ├── in_channel.ml ├── in_channel.mli ├── index.mld ├── out_channel.ml ├── out_channel.mli ├── stdio.ml └── stdio.mli └── stdio.opam /.gitignore: -------------------------------------------------------------------------------- 1 | _build 2 | *.install 3 | *.merlin 4 | _opam 5 | 6 | -------------------------------------------------------------------------------- /.ocamlformat: -------------------------------------------------------------------------------- 1 | profile=janestreet 2 | -------------------------------------------------------------------------------- /CHANGES.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/janestreet/stdio/HEAD/CHANGES.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/janestreet/stdio/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/janestreet/stdio/HEAD/LICENSE.md -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/janestreet/stdio/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/janestreet/stdio/HEAD/README.md -------------------------------------------------------------------------------- /dune-project: -------------------------------------------------------------------------------- 1 | (lang dune 3.17) 2 | -------------------------------------------------------------------------------- /src/dune: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/janestreet/stdio/HEAD/src/dune -------------------------------------------------------------------------------- /src/in_channel.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/janestreet/stdio/HEAD/src/in_channel.ml -------------------------------------------------------------------------------- /src/in_channel.mli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/janestreet/stdio/HEAD/src/in_channel.mli -------------------------------------------------------------------------------- /src/index.mld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/janestreet/stdio/HEAD/src/index.mld -------------------------------------------------------------------------------- /src/out_channel.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/janestreet/stdio/HEAD/src/out_channel.ml -------------------------------------------------------------------------------- /src/out_channel.mli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/janestreet/stdio/HEAD/src/out_channel.mli -------------------------------------------------------------------------------- /src/stdio.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/janestreet/stdio/HEAD/src/stdio.ml -------------------------------------------------------------------------------- /src/stdio.mli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/janestreet/stdio/HEAD/src/stdio.mli -------------------------------------------------------------------------------- /stdio.opam: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/janestreet/stdio/HEAD/stdio.opam --------------------------------------------------------------------------------