diff options
Diffstat (limited to 'src/include/parser')
| -rw-r--r-- | src/include/parser/gramparse.h | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/src/include/parser/gramparse.h b/src/include/parser/gramparse.h new file mode 100644 index 00000000000..95de9f0f395 --- /dev/null +++ b/src/include/parser/gramparse.h @@ -0,0 +1,24 @@ +/*------------------------------------------------------------------------- + * + * gramparse.h-- + * scanner support routines. used by both the bootstrap lexer + * as well as the normal lexer + * + * Copyright (c) 1994, Regents of the University of California + * + * $Id: gramparse.h,v 1.1 1996/11/08 20:46:26 momjian Exp $ + * + *------------------------------------------------------------------------- + */ + +#ifndef GRAMPARSE_H +#define GRAMPARSE_H /* include once only */ + +/* from scan.l */ +extern void init_io(); + +/* from gram.y */ +extern void parser_init(Oid *typev, int nargs); +extern int yyparse(); + +#endif /* GRAMPARSE_H */ |
