gramparse.h
上传用户:blenddy
上传日期:2007-01-07
资源大小:6495k
文件大小:1k
源码类别:

数据库系统

开发平台:

Unix_Linux

  1. /*-------------------------------------------------------------------------
  2.  *
  3.  * gramparse.h
  4.  *   scanner support routines.  used by both the bootstrap lexer
  5.  * as well as the normal lexer
  6.  *
  7.  * Copyright (c) 1994, Regents of the University of California
  8.  *
  9.  * $Id: gramparse.h,v 1.9 1999/02/13 23:21:55 momjian Exp $
  10.  *
  11.  *-------------------------------------------------------------------------
  12.  */
  13. #ifndef GRAMPARSE_H
  14. #define GRAMPARSE_H /* include once only */
  15. /* from scan.l */
  16. extern void init_io(void);
  17. /* from gram.y */
  18. extern Oid param_type(int t);
  19. extern void parser_init(Oid *typev, int nargs);
  20. extern int yyparse(void);
  21. #endif  /* GRAMPARSE_H */