mirror of
https://github.com/postgres/postgres.git
synced 2026-02-11 06:43:59 -05:00
Also performed an initial run through of upgrading our Copyright date to extend to 2005 ... first run here was very simple ... change everything where: grep 1996-2004 && the word 'Copyright' ... scanned through the generated list with 'less' first, and after, to make sure that I only picked up the right entries ...
37 lines
1,010 B
C
37 lines
1,010 B
C
/*-------------------------------------------------------------------------
|
|
*
|
|
* gramparse.h
|
|
* Declarations for routines exported from lexer and parser files.
|
|
*
|
|
*
|
|
* Portions Copyright (c) 1996-2005, PostgreSQL Global Development Group
|
|
* Portions Copyright (c) 1994, Regents of the University of California
|
|
*
|
|
* $PostgreSQL: pgsql/src/include/parser/gramparse.h,v 1.31 2004/12/31 22:03:38 pgsql Exp $
|
|
*
|
|
*-------------------------------------------------------------------------
|
|
*/
|
|
|
|
#ifndef GRAMPARSE_H
|
|
#define GRAMPARSE_H
|
|
|
|
#include "nodes/parsenodes.h"
|
|
|
|
|
|
/* from parser.c */
|
|
extern int yylex(void);
|
|
|
|
/* from scan.l */
|
|
extern void scanner_init(const char *str);
|
|
extern void scanner_finish(void);
|
|
extern int base_yylex(void);
|
|
extern void yyerror(const char *message);
|
|
|
|
/* from gram.y */
|
|
extern void parser_init(void);
|
|
extern int yyparse(void);
|
|
extern List *SystemFuncName(char *name);
|
|
extern TypeName *SystemTypeName(char *name);
|
|
extern bool exprIsNullConstant(Node *arg);
|
|
|
|
#endif /* GRAMPARSE_H */
|