readfuncs.h
上传用户:blenddy
上传日期:2007-01-07
资源大小:6495k
文件大小:1k
源码类别:

数据库系统

开发平台:

Unix_Linux

  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. #include "nodes/nodes.h"
  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.  * prototypes for functions in readfuncs.c
  23.  */
  24. extern Node *parsePlanString(void);
  25. #endif  /* READFUNCS_H */