]> granicus.if.org Git - postgresql/blob - src/include/parser/keywords.h
77c754901abc69f7a3e24fc11e5d06b93418cc22
[postgresql] / src / include / parser / keywords.h
1 /*-------------------------------------------------------------------------
2  *
3  * keywords.h
4  *        lexical token lookup for reserved words in postgres SQL
5  *
6  *
7  * Portions Copyright (c) 1996-2001, PostgreSQL Global Development Group
8  * Portions Copyright (c) 1994, Regents of the University of California
9  *
10  * $Id: keywords.h,v 1.12 2001/11/05 17:46:34 momjian Exp $
11  *
12  *-------------------------------------------------------------------------
13  */
14 #ifndef KEYWORDS_H
15 #define KEYWORDS_H
16
17 typedef struct ScanKeyword
18 {
19         char       *name;
20         int                     value;
21 } ScanKeyword;
22
23 extern ScanKeyword *ScanKeywordLookup(char *text);
24
25 #endif   /* KEYWORDS_H */