summaryrefslogtreecommitdiff
path: root/ocamlbuild/glob_lexer.mli
diff options
context:
space:
mode:
authorNicolas Pouillard <np@nicolaspouillard.fr>2007-02-07 08:59:16 +0000
committerNicolas Pouillard <np@nicolaspouillard.fr>2007-02-07 08:59:16 +0000
commit381e325c0f7c9f4188c2a4e6421b46d41c0c007c (patch)
tree194fbc6442deb3d79b6c595f30f356ed58f063cb /ocamlbuild/glob_lexer.mli
parent2d26308ad4d34ea0c00e44db62c4c24c7031c78c (diff)
downloadocaml-381e325c0f7c9f4188c2a4e6421b46d41c0c007c.tar.gz
Add the ocamlbuild directory
git-svn-id: http://caml.inria.fr/svn/ocaml/trunk@7823 f963ae5c-01c2-4b8c-9fe0-0dff7051ff02
Diffstat (limited to 'ocamlbuild/glob_lexer.mli')
-rw-r--r--ocamlbuild/glob_lexer.mli27
1 files changed, 27 insertions, 0 deletions
diff --git a/ocamlbuild/glob_lexer.mli b/ocamlbuild/glob_lexer.mli
new file mode 100644
index 0000000000..aa818dda58
--- /dev/null
+++ b/ocamlbuild/glob_lexer.mli
@@ -0,0 +1,27 @@
+(***********************************************************************)
+(* ocamlbuild *)
+(* *)
+(* Nicolas Pouillard, Berke Durak, projet Gallium, INRIA Rocquencourt *)
+(* *)
+(* Copyright 2007 Institut National de Recherche en Informatique et *)
+(* en Automatique. All rights reserved. This file is distributed *)
+(* under the terms of the Q Public License version 1.0. *)
+(* *)
+(***********************************************************************)
+
+(* $Id$ *)
+(* Original author: Berke Durak *)
+open Glob_ast
+
+type token =
+| ATOM of pattern atom
+| AND
+| OR
+| NOT
+| LPAR
+| RPAR
+| TRUE
+| FALSE
+| EOF
+
+val token : Lexing.lexbuf -> token