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
|
|
|
*
|
2010-01-02 11:58:17 -05:00
|
|
|
* Portions Copyright (c) 1996-2010, PostgreSQL Global Development Group
|
2000-01-26 00:58:53 -05:00
|
|
|
* Portions Copyright (c) 1994, Regents of the University of California
|
1996-08-27 21:59:28 -04:00
|
|
|
*
|
2010-01-02 11:58:17 -05:00
|
|
|
* $PostgreSQL: pgsql/src/include/nodes/readfuncs.h,v 1.26 2010/01/02 16:58:07 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)
|
|
|
|
|
*/
|
2001-01-06 20:08:48 -05:00
|
|
|
extern char *pg_strtok(int *length);
|
2000-01-13 19:53:21 -05:00
|
|
|
extern char *debackslash(char *token, int length);
|
2004-05-06 10:01:33 -04:00
|
|
|
extern void *nodeRead(char *token, int tok_len);
|
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
|
|
|
*/
|
2002-11-25 13:12:12 -05:00
|
|
|
extern Node *parseNodeString(void);
|
2001-10-28 01:26:15 -05:00
|
|
|
|
2001-11-05 12:46:40 -05:00
|
|
|
#endif /* READFUNCS_H */
|