]> matita.cs.unibo.it Git - helm.git/blob - components/library/librarian.mli
irediced usage of matita.includes, that is now set by
[helm.git] / components / library / librarian.mli
1 exception NoRootFor of string
2
3 val find_root: string -> string
4
5 val parse_root: string -> (string*string) list
6
7 (* baseuri_of_script ?(inc:REG[matita.includes]) fname 
8  *   -> 
9  * root, buri, fullpath, rootrelativepath
10  * sample: baseuri_of_script a.ma -> /home/pippo/devel/, cic:/matita/a,
11  * /home/pippo/devel/a.ma *)
12 val baseuri_of_script: 
13   ?include_paths:string list -> string -> string * string * string * string
14
15 (* finds all the roots files in the specified dir *)
16 val find_roots_in_dir: string -> string list