From 214131b27d185e9f877eac998e5d7c4bbd2922ee Mon Sep 17 00:00:00 2001 From: Rudi Grinberg Date: Wed, 22 Aug 2018 14:12:53 +0300 Subject: [PATCH] Add mli for bytes Signed-off-by: Rudi Grinberg --- src/stdune/bytes.mli | 9 +++++++++ 1 file changed, 9 insertions(+) create mode 100644 src/stdune/bytes.mli diff --git a/src/stdune/bytes.mli b/src/stdune/bytes.mli new file mode 100644 index 00000000..a395a7ee --- /dev/null +++ b/src/stdune/bytes.mli @@ -0,0 +1,9 @@ +include module type of StdLabels.Bytes with type t = StdLabels.Bytes.t + +val blit_string + : src:string + -> src_pos:int + -> dst:t + -> dst_pos:int + -> len:int + -> unit