]> granicus.if.org Git - postgresql/blob - src/include/parser/gramparse.h
Another PGINDENT run that changes variable indenting and case label indenting. Also...
[postgresql] / src / include / parser / gramparse.h
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.4 1997/09/08 02:38:11 momjian Exp $
10  *
11  *-------------------------------------------------------------------------
12  */
13
14 #ifndef GRAMPARSE_H
15 #define GRAMPARSE_H                             /* include once only */
16
17 /* from scan.l */
18 extern void init_io(void);
19
20 /* from gram.y */
21 extern void parser_init(Oid * typev, int nargs);
22 extern int      yyparse(void);
23
24 #endif                                                  /* GRAMPARSE_H */