From 4a5b781d71b61887fd312112d75979f250bf723f Mon Sep 17 00:00:00 2001 From: Bruce Momjian Date: Tue, 25 Nov 1997 22:07:18 +0000 Subject: Break parser functions into smaller files, group together. --- src/include/parser/parser.h | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) create mode 100644 src/include/parser/parser.h (limited to 'src/include/parser/parser.h') diff --git a/src/include/parser/parser.h b/src/include/parser/parser.h new file mode 100644 index 00000000000..4362ebb4803 --- /dev/null +++ b/src/include/parser/parser.h @@ -0,0 +1,21 @@ +/*------------------------------------------------------------------------- + * + * parser.h + * + * + * + * Copyright (c) 1994, Regents of the University of California + * + * $Id: parser.h,v 1.1 1997/11/25 22:07:08 momjian Exp $ + * + *------------------------------------------------------------------------- + */ +#ifndef PARSER_H +#define PARSER_H + +#include + +QueryTreeList *parser(char *str, Oid *typev, int nargs); + +#endif /* PARSER_H */ + -- cgit v1.2.3