aboutsummaryrefslogtreecommitdiff
path: root/lib/system.mli
diff options
context:
space:
mode:
Diffstat (limited to 'lib/system.mli')
-rw-r--r--lib/system.mli14
1 files changed, 11 insertions, 3 deletions
diff --git a/lib/system.mli b/lib/system.mli
index 6b773fdefc..6f89901aa5 100644
--- a/lib/system.mli
+++ b/lib/system.mli
@@ -1,15 +1,23 @@
(* $Id$ *)
-(*s Files and load path. *)
+(*s Files. *)
+
+val alldir : string -> string list
+val is_in_path : string list -> string -> bool
+val where_in_path : string list -> string -> string
+
+val make_suffix : string -> string -> string
+
+val glob : string -> string
+
+(*s Global load path. *)
val add_path : string -> unit
val del_path : string -> unit
val find_file_in_path : string -> string
-val make_suffix : string -> string -> string
-
(*s Generic input and output functions, parameterized by a magic number
and a suffix. The intern functions raise the exception [Bad_magic_number]
when the check fails, with the full file name. *)