blob: ef4b6658969623810f1410cece5ceb726b117e1a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
|
/*-------------------------------------------------------------------------
*
* keywords.h
* lexical token lookup for reserved words in postgres SQL
*
*
* Portions Copyright (c) 1996-2001, PostgreSQL Global Development Group
* Portions Copyright (c) 1994, Regents of the University of California
*
* $Id: keywords.h,v 1.10 2001/10/25 05:50:06 momjian Exp $
*
*-------------------------------------------------------------------------
*/
#ifndef KEYWORDS_H
#define KEYWORDS_H
typedef struct ScanKeyword
{
char *name;
int value;
} ScanKeyword;
extern ScanKeyword *ScanKeywordLookup(char *text);
#endif /* KEYWORDS_H */
|