]> matita.cs.unibo.it Git - helm.git/blob - components/library/librarian.mli
5280dbbf8a4c0460647380d4ad08117731ca025e
[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 -> root, buri, fullpath 
8  * sample: baseuri_of_script a.ma -> /home/pippo/devel/, cic:/matita/a,
9  * /home/pippo/devel/a.ma *)
10 val baseuri_of_script: 
11   ?include_paths:string list -> string -> string * string * string
12
13 (* finds all the roots files in the specified dir *)
14 val find_roots_in_dir: string -> string list