sig
type filter =
Maxdepth of int
| Type of Unix.file_kind
| Follow
| Regexp of Str.regexp
| Atime of Stog_find.interval
| Predicate of (string -> bool)
and interval = Le of int | Eq of int | Ge of int
type mode =
Ignore
| Stderr
| Failure
| Custom of (Unix.error * string * string -> unit)
val find :
Stog_find.mode ->
string list -> Stog_find.filter list -> (string -> unit) -> unit
val find_list :
Stog_find.mode -> string list -> Stog_find.filter list -> string list
end