Fix pg_dump bug in the database-level collation patch. "datcollate" and
[PostgreSQL.git] / src / include / nodes / readfuncs.h
blob96bf470adfd7b435f58857dee2c49c21014aeeaf
1 /*-------------------------------------------------------------------------
3 * readfuncs.h
4 * header file for read.c and readfuncs.c. These functions are internal
5 * to the stringToNode interface and should not be used by anyone else.
7 * Portions Copyright (c) 1996-2008, PostgreSQL Global Development Group
8 * Portions Copyright (c) 1994, Regents of the University of California
10 * $PostgreSQL$
12 *-------------------------------------------------------------------------
14 #ifndef READFUNCS_H
15 #define READFUNCS_H
17 #include "nodes/nodes.h"
20 * prototypes for functions in read.c (the lisp token parser)
22 extern char *pg_strtok(int *length);
23 extern char *debackslash(char *token, int length);
24 extern void *nodeRead(char *token, int tok_len);
27 * prototypes for functions in readfuncs.c
29 extern Node *parseNodeString(void);
31 #endif /* READFUNCS_H */