1
0
mirror of https://github.com/postgres/postgres.git synced 2026-01-15 01:22:28 +03:00
Files
postgres/src/include/parser/keywords.h
Marc G. Fournier 870be9fa8e Clean up th ecompile process by centralizing the include files
- code compile tested, but due to a yet unresolved problem with
          parse.h's creation, compile not completed...
1996-08-28 07:27:54 +00:00

26 lines
687 B
C

/*-------------------------------------------------------------------------
*
* keywords.h--
* string,atom lookup thingy, reduces strcmp traffic greatly
* in the bowels of the system. Look for actual defs in lib/C/atoms.c
*
*
* Copyright (c) 1994, Regents of the University of California
*
* $Id: keywords.h,v 1.1 1996/08/28 07:23:55 scrappy Exp $
*
*-------------------------------------------------------------------------
*/
#ifndef KEYWORDS_H
#define KEYWORDS_H
typedef struct ScanKeyword {
char *name;
int value;
} ScanKeyword;
extern ScanKeyword *ScanKeywordLookup(char *text);
extern char* AtomValueGetString(int atomval);
#endif /* KEYWORDS_H */