/*******************************************************/ /* "C" Language Integrated Production System */ /* */ /* CLIPS Version 6.40 07/30/16 */ /* */ /* FACT BUILD HEADER FILE */ /*******************************************************/ /*************************************************************/ /* Purpose: */ /* */ /* Principal Programmer(s): */ /* Gary D. Riley */ /* */ /* Contributing Programmer(s): */ /* */ /* Revision History: */ /* */ /* 6.30: Removed conditional code for unsupported */ /* compilers/operating systems (IBM_MCW, */ /* MAC_MCW, and IBM_TBC). */ /* */ /* Initialize the exists member. */ /* */ /* Added const qualifiers to remove C++ */ /* deprecation warnings. */ /* */ /* 6.40: Removed LOCALE definition. */ /* */ /* Pragma once and other inclusion changes. */ /* */ /* Added support for booleans with . */ /* */ /* Removed use of void pointers for specific */ /* data structures. */ /* */ /* Removed initial-fact support. */ /* */ /*************************************************************/ #ifndef _H_factlhs #pragma once #define _H_factlhs #include "scanner.h" #include "symbol.h" bool FactPatternParserFind(CLIPSLexeme *); struct lhsParseNode *FactPatternParse(Environment *,const char *,struct token *); struct lhsParseNode *SequenceRestrictionParse(Environment *,const char *,struct token *); #endif /* _H_factlhs */