Fix xslt_process() to ensure that it inserts a NULL terminator after the
[PostgreSQL.git] / src / interfaces / ecpg / preproc / keywords.c
blobfa6db2ed0426a7bbcfc0bb51695f39c9edbba128
1 /*-------------------------------------------------------------------------
3 * keywords.c
4 * lexical token lookup for key words in PostgreSQL
7 * Portions Copyright (c) 1996-2009, PostgreSQL Global Development Group
8 * Portions Copyright (c) 1994, Regents of the University of California
11 * IDENTIFICATION
12 * $PostgreSQL$
14 *-------------------------------------------------------------------------
16 #include "postgres_fe.h"
18 #include "parser/keywords.h"
19 #include "type.h"
20 #include "preproc.h"
22 #define PG_KEYWORD(a,b,c) {a,b,c},
25 const ScanKeyword ScanKeywords[] = {
26 #include "parser/kwlist.h"
29 /* End of ScanKeywords, for use in kwlookup.c */
30 const ScanKeyword *LastScanKeyword = endof(ScanKeywords);