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

数据库系统

开发平台:

Unix_Linux

  1. /*-------------------------------------------------------------------------
  2.  *
  3.  * keywords.h
  4.  *   string,atom lookup thingy, reduces strcmp traffic greatly
  5.  *   in the bowels of the system. Look for actual defs in lib/C/atoms.c
  6.  *
  7.  *
  8.  * Copyright (c) 1994, Regents of the University of California
  9.  *
  10.  * $Id: keywords.h,v 1.6 1999/02/13 23:21:55 momjian Exp $
  11.  *
  12.  *-------------------------------------------------------------------------
  13.  */
  14. #ifndef KEYWORDS_H
  15. #define KEYWORDS_H
  16. typedef struct ScanKeyword
  17. {
  18. char    *name;
  19. int value;
  20. } ScanKeyword;
  21. extern ScanKeyword *ScanKeywordLookup(char *text);
  22. extern char *AtomValueGetString(int atomval);
  23. #endif  /* KEYWORDS_H */