Up

module OASISLicense_parser

: sig
#
type token =
# | TOKEN of string
# | COMMA
# | AND
# | OR
# | WITH
# | EXCEPTION
# | EOF
#
val main : (Lexing.lexbuf -> token) -> Lexing.lexbuf -> OASISLicense_types.t
end