OSDN Git Service

Change my-function-name-- to my_function_name, and optimizer renames.
[pg-rex/syncrep.git] / src / include / nodes / readfuncs.h
1 /*-------------------------------------------------------------------------
2  *
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.
6  *
7  * Copyright (c) 1994, Regents of the University of California
8  *
9  * $Id: readfuncs.h,v 1.7 1999/02/13 23:21:41 momjian Exp $
10  *
11  *-------------------------------------------------------------------------
12  */
13 #ifndef READFUNCS_H
14 #define READFUNCS_H
15
16 #include "nodes/nodes.h"
17
18 /*
19  * prototypes for functions in read.c (the lisp token parser)
20  */
21 extern char *lsptok(char *string, int *length);
22 extern void *nodeRead(bool read_car_only);
23
24 /*
25  * prototypes for functions in readfuncs.c
26  */
27 extern Node *parsePlanString(void);
28
29 #endif   /* READFUNCS_H */