postgresql/src/include/parser/keywords.h

26 lines
689 B
C
Raw Normal View History

/*-------------------------------------------------------------------------
*
* keywords.h
2000-08-29 04:00:38 +02:00
* lexical token lookup for reserved words in postgres SQL
*
*
2003-08-04 04:40:20 +02:00
* Portions Copyright (c) 1996-2003, PostgreSQL Global Development Group
* Portions Copyright (c) 1994, Regents of the University of California
*
* $PostgreSQL: pgsql/src/include/parser/keywords.h,v 1.18 2003/11/29 22:41:09 pgsql 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 */