Cobol_common.Copybook
val pp_lookup_config : lookup_config Pretty.printer
val lookup_config : ?libexts:string list -> string list -> lookup_config
val pp_lookup_error : lookup_error Pretty.printer
val find_lib :
lookup_config:lookup_config ->
?fromfile:string ->
?libname:fileloc ->
fileloc ->
(string, lookup_error) Stdlib.result
find_lib ~lookup_config ?fromfile ?libname txtname
attempts to locate a file containing the copybook txtname
, which is a file named txtname
, possibly appended with an extension from libexts
(considered in order), unless txtname
is given as an alphanumeric literal (e.g, txtname =
`Alphanum filname
--- in which case no extension is assumed). If libname
is not provided, then the file is searched within the directories listed in libpath
(considered in order). Otherwise, a single directory libname
is considered; if libname
is a relative path, it is interpreted relative to the directory that contains fromfile
. Lookup is performed in a case-insensitive way. Every directory in the path is considered in order, and all extensions are tried for a given directory of the path in the provided order.