~ubuntu-branches/ubuntu/natty/postgresql-8.4/natty-updates

« back to all changes in this revision

Viewing changes to src/include/nodes/readfuncs.h

  • Committer: Bazaar Package Importer
  • Author(s): Martin Pitt
  • Date: 2009-03-20 12:00:13 UTC
  • Revision ID: james.westby@ubuntu.com-20090320120013-hogj7egc5mjncc5g
Tags: upstream-8.4~0cvs20090328
ImportĀ upstreamĀ versionĀ 8.4~0cvs20090328

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
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
 * Portions Copyright (c) 1996-2009, PostgreSQL Global Development Group
 
8
 * Portions Copyright (c) 1994, Regents of the University of California
 
9
 *
 
10
 * $PostgreSQL$
 
11
 *
 
12
 *-------------------------------------------------------------------------
 
13
 */
 
14
#ifndef READFUNCS_H
 
15
#define READFUNCS_H
 
16
 
 
17
#include "nodes/nodes.h"
 
18
 
 
19
/*
 
20
 * prototypes for functions in read.c (the lisp token parser)
 
21
 */
 
22
extern char *pg_strtok(int *length);
 
23
extern char *debackslash(char *token, int length);
 
24
extern void *nodeRead(char *token, int tok_len);
 
25
 
 
26
/*
 
27
 * prototypes for functions in readfuncs.c
 
28
 */
 
29
extern Node *parseNodeString(void);
 
30
 
 
31
#endif   /* READFUNCS_H */