/*******************************************************/ /* "C" Language Integrated Production System */ /* */ /* CLIPS Version 6.40 07/30/16 */ /* */ /* RULE PARSING HEADER FILE */ /*******************************************************/ /*************************************************************/ /* Purpose: Coordinates parsing of a rule. */ /* */ /* Principal Programmer(s): */ /* Gary D. Riley */ /* */ /* Contributing Programmer(s): */ /* */ /* Revision History: */ /* */ /* 6.24: Removed DYNAMIC_SALIENCE, INCREMENTAL_RESET, */ /* and LOGICAL_DEPENDENCIES compilation flags. */ /* */ /* 6.30: Removed conditional code for unsupported */ /* compilers/operating systems (IBM_MCW and */ /* MAC_MCW). */ /* */ /* Changed integer type/precision. */ /* */ /* GetConstructNameAndComment API change. */ /* */ /* Added support for hashed memories. */ /* */ /* 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. */ /* */ /*************************************************************/ #ifndef _H_rulepsr #pragma once #define _H_rulepsr bool ParseDefrule(Environment *,const char *); struct lhsParseNode *FindVariable(CLIPSLexeme *, struct lhsParseNode *); #if DEVELOPER && DEBUGGING_FUNCTIONS void DumpRuleAnalysis(Environment *,struct lhsParseNode *); #endif #endif /* _H_rulepsr */