/*------------------------------------------------------------------------- * * keywords.h * lexical token lookup for reserved words in postgres SQL * * * Portions Copyright (c) 1996-2004, PostgreSQL Global Development Group * Portions Copyright (c) 1994, Regents of the University of California * * $PostgreSQL: pgsql/src/include/parser/keywords.h,v 1.19 2004/08/29 04:13:09 momjian Exp $ * *------------------------------------------------------------------------- */ #ifndef KEYWORDS_H #define KEYWORDS_H typedef struct ScanKeyword { const char *name; int value; } ScanKeyword; extern const ScanKeyword *ScanKeywordLookup(const char *text); #endif /* KEYWORDS_H */