]> granicus.if.org Git - postgresql/blob - src/include/parser/parser.h
cbe879302fcf64c726dacd36dd3e2746b6049ac3
[postgresql] / src / include / parser / parser.h
1 /*-------------------------------------------------------------------------
2  *
3  * parser.h
4  *              Definitions for the "raw" parser (lex and yacc phases only)
5  *
6  *
7  * Portions Copyright (c) 1996-2009, PostgreSQL Global Development Group
8  * Portions Copyright (c) 1994, Regents of the University of California
9  *
10  * $PostgreSQL: pgsql/src/include/parser/parser.h,v 1.25 2009/04/19 21:50:08 tgl Exp $
11  *
12  *-------------------------------------------------------------------------
13  */
14 #ifndef PARSER_H
15 #define PARSER_H
16
17 #include "nodes/pg_list.h"
18
19 extern List *raw_parser(const char *str);
20
21 extern char *pg_parse_string_token(const char *token);
22
23 #endif   /* PARSER_H */