OSDN Git Service

All external function definitions now have prototypes that are checked.
[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.2 1996/11/10 03:05:30 momjian Exp $
10  *
11  *-------------------------------------------------------------------------
12  */
13 #ifndef READFUNCS_H
14 #define READFUNCS_H
15
16 /*
17  * prototypes for functions in read.c (the lisp token parser)
18  */
19 extern char *lsptok(char *string, int *length);
20 extern void *nodeRead(bool read_car_only);
21
22 /*
23  * prototypes for functions in readfuncs.c 
24  */
25 extern Node *parsePlanString(void);
26
27 #endif  /* READFUNCS_H */