📄 rulecom.h
字号:
/*******************************************************/ /* "C" Language Integrated Production System */ /* */ /* CLIPS Version 6.05 04/09/97 */ /* */ /* DEFRULE COMMANDS HEADER FILE */ /*******************************************************//*************************************************************//* Purpose: Provides the matches command. Also provides the *//* the developer commands show-joins and rule-complexity. *//* Also provides the initialization routine which *//* registers rule commands found in other modules. *//* *//* Principal Programmer(s): *//* Gary D. Riley *//* *//* Contributing Programmer(s): *//* Brian L. Donnell *//* *//* Revision History: *//* *//*************************************************************/#ifndef _H_rulecom#define _H_rulecom#ifndef _H_evaluatn#include "evaluatn.h"#endif #ifdef LOCALE#undef LOCALE#endif#ifdef _RULECOM_SOURCE_#define LOCALE#else#define LOCALE extern#endif#if ANSI_COMPILER LOCALE VOID DefruleConstructsToCSetup(void); LOCALE BOOLEAN Matches(VOID *); LOCALE VOID DefruleCommands(void); LOCALE VOID MatchesCommand(void);#if DEVELOPER LOCALE VOID ShowJoinsCommand(void); LOCALE long RuleComplexityCommand(void);#endif#else LOCALE VOID DefruleConstructsToCSetup(); LOCALE BOOLEAN Matches(); LOCALE VOID DefruleCommands(); LOCALE VOID ListDefrules(); LOCALE VOID PPRuleCommand(); LOCALE VOID UndefruleCommand(); LOCALE VOID MatchesCommand(); LOCALE VOID GetDefruleListFunction();#if DEVELOPER LOCALE VOID ShowJoinsCommand(); LOCALE long RuleComplexityCommand();#endif#endif#endif
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -