gramparse.h
上传用户:blenddy
上传日期:2007-01-07
资源大小:6495k
文件大小:1k
- /*-------------------------------------------------------------------------
- *
- * 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.9 1999/02/13 23:21:55 momjian Exp $
- *
- *-------------------------------------------------------------------------
- */
- #ifndef GRAMPARSE_H
- #define GRAMPARSE_H /* include once only */
- /* from scan.l */
- extern void init_io(void);
- /* from gram.y */
- extern Oid param_type(int t);
- extern void parser_init(Oid *typev, int nargs);
- extern int yyparse(void);
- #endif /* GRAMPARSE_H */