summaryrefslogtreecommitdiff
path: root/src/include/parser/keywords.h
diff options
context:
space:
mode:
authorBruce Momjian1997-09-07 05:04:48 +0000
committerBruce Momjian1997-09-07 05:04:48 +0000
commit1ccd423235a48739d6f7a4d7889705b5f9ecc69b (patch)
tree8001c4e839dfad8f29ceda7f8c5f5dbb8759b564 /src/include/parser/keywords.h
parent8fecd4febf8357f3cc20383ed29ced484877d5ac (diff)
Massive commit to run PGINDENT on all *.c and *.h files.
Diffstat (limited to 'src/include/parser/keywords.h')
-rw-r--r--src/include/parser/keywords.h23
1 files changed, 12 insertions, 11 deletions
diff --git a/src/include/parser/keywords.h b/src/include/parser/keywords.h
index 66e113496a2..1453d60e1a4 100644
--- a/src/include/parser/keywords.h
+++ b/src/include/parser/keywords.h
@@ -1,25 +1,26 @@
/*-------------------------------------------------------------------------
*
* 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
+ * 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 $
+ * $Id: keywords.h,v 1.2 1997/09/07 04:59:34 momjian Exp $
*
*-------------------------------------------------------------------------
*/
-#ifndef KEYWORDS_H
-#define KEYWORDS_H
+#ifndef KEYWORDS_H
+#define KEYWORDS_H
-typedef struct ScanKeyword {
- char *name;
- int value;
-} ScanKeyword;
+typedef struct ScanKeyword
+{
+ char *name;
+ int value;
+} ScanKeyword;
extern ScanKeyword *ScanKeywordLookup(char *text);
-extern char* AtomValueGetString(int atomval);
+extern char *AtomValueGetString(int atomval);
-#endif /* KEYWORDS_H */
+#endif /* KEYWORDS_H */