diff options
Diffstat (limited to 'otherlibs/labltk/support/support.mli')
-rw-r--r-- | otherlibs/labltk/support/support.mli | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/otherlibs/labltk/support/support.mli b/otherlibs/labltk/support/support.mli new file mode 100644 index 000000000..798842298 --- /dev/null +++ b/otherlibs/labltk/support/support.mli @@ -0,0 +1,11 @@ +(* Extensible buffers *) +type extensible_buffer +val new_buffer : unit -> extensible_buffer +val print_in_buffer : extensible_buffer -> string -> unit +val get_buffer : extensible_buffer -> string + + +val catenate_sep : string -> string list -> string +val split_str : (char -> bool) -> string -> string list + (* Various string manipulations *) + |