postgresql/src/include/parser/gramparse.h

26 lines
673 B
C
Raw Normal View History

1996-11-08 21:46:33 +01:00
/*-------------------------------------------------------------------------
*
* gramparse.h--
* scanner support routines. used by both the bootstrap lexer
1996-11-08 21:46:33 +01:00
* as well as the normal lexer
*
* Copyright (c) 1994, Regents of the University of California
*
* $Id: gramparse.h,v 1.7 1998/02/26 04:42:36 momjian Exp $
1996-11-08 21:46:33 +01:00
*
*-------------------------------------------------------------------------
*/
#ifndef GRAMPARSE_H
#define GRAMPARSE_H /* include once only */
1996-11-08 21:46:33 +01:00
/* from scan.l */
extern void init_io(void);
1996-11-08 21:46:33 +01:00
/* from gram.y */
extern Oid param_type(int t);
extern void parser_init(Oid *typev, int nargs);
extern int yyparse(void);
1996-11-08 21:46:33 +01:00
#endif /* GRAMPARSE_H */