1996-08-27 21:59:28 -04:00
|
|
|
/*-------------------------------------------------------------------------
|
|
|
|
|
*
|
1999-02-13 18:22:53 -05:00
|
|
|
* readfuncs.h
|
1997-09-07 01:04:48 -04:00
|
|
|
* header file for read.c and readfuncs.c. These functions are internal
|
|
|
|
|
* to the stringToNode interface and should not be used by anyone else.
|
1996-08-27 21:59:28 -04:00
|
|
|
*
|
2000-01-26 00:58:53 -05:00
|
|
|
* Portions Copyright (c) 1996-2000, PostgreSQL, Inc
|
|
|
|
|
* Portions Copyright (c) 1994, Regents of the University of California
|
1996-08-27 21:59:28 -04:00
|
|
|
*
|
2000-01-26 00:58:53 -05:00
|
|
|
* $Id: readfuncs.h,v 1.9 2000/01/26 05:58:17 momjian Exp $
|
1996-08-27 21:59:28 -04:00
|
|
|
*
|
|
|
|
|
*-------------------------------------------------------------------------
|
|
|
|
|
*/
|
1997-09-07 01:04:48 -04:00
|
|
|
#ifndef READFUNCS_H
|
|
|
|
|
#define READFUNCS_H
|
1996-08-27 21:59:28 -04:00
|
|
|
|
1997-11-25 20:14:33 -05:00
|
|
|
#include "nodes/nodes.h"
|
|
|
|
|
|
1996-08-27 21:59:28 -04:00
|
|
|
/*
|
|
|
|
|
* prototypes for functions in read.c (the lisp token parser)
|
|
|
|
|
*/
|
1997-09-07 22:41:22 -04:00
|
|
|
extern char *lsptok(char *string, int *length);
|
2000-01-13 19:53:21 -05:00
|
|
|
extern char *debackslash(char *token, int length);
|
1997-09-07 22:41:22 -04:00
|
|
|
extern void *nodeRead(bool read_car_only);
|
1996-08-27 21:59:28 -04:00
|
|
|
|
|
|
|
|
/*
|
1997-09-07 01:04:48 -04:00
|
|
|
* prototypes for functions in readfuncs.c
|
1996-08-27 21:59:28 -04:00
|
|
|
*/
|
1997-09-07 22:41:22 -04:00
|
|
|
extern Node *parsePlanString(void);
|
1996-08-27 21:59:28 -04:00
|
|
|
|
1998-09-01 00:40:42 -04:00
|
|
|
#endif /* READFUNCS_H */
|