1 /*-------------------------------------------------------------------------
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
12 *-------------------------------------------------------------------------
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 */