00001 /*******************************************************/ 00002 /* "C" Language Integrated Production System */ 00003 /* */ 00004 /* CLIPS Version 6.20 01/31/02 */ 00005 /* */ 00006 /* RULE PARSING HEADER FILE */ 00007 /*******************************************************/ 00008 00009 /*************************************************************/ 00010 /* Purpose: Coordinates parsing of a rule. */ 00011 /* */ 00012 /* Principal Programmer(s): */ 00013 /* Gary D. Riley */ 00014 /* */ 00015 /* Contributing Programmer(s): */ 00016 /* */ 00017 /* Revision History: */ 00018 /* */ 00019 /*************************************************************/ 00020 00021 #ifndef _H_rulepsr 00022 #define _H_rulepsr 00023 00024 #ifdef LOCALE 00025 #undef LOCALE 00026 #endif 00027 00028 #ifdef _RULEPSR_SOURCE_ 00029 #define LOCALE 00030 #else 00031 #define LOCALE extern 00032 #endif 00033 00034 LOCALE int ParseDefrule(void *,char *); 00035 LOCALE struct lhsParseNode *FindVariable(struct symbolHashNode *, 00036 struct lhsParseNode *); 00037 00038 #endif 00039 00040
1.5.6