clsltpsr.h
来自「NASA 开发使用的一个专家系统」· C头文件 代码 · 共 73 行
H
73 行
/*******************************************************/ /* "C" Language Integrated Production System */ /* */ /* CLIPS Version 6.05 04/09/97 */ /* */ /* */ /*******************************************************//*************************************************************//* Purpose: *//* *//* Principal Programmer(s): *//* Brian L. Donnell *//* *//* Contributing Programmer(s): *//* *//* Revision History: *//* *//*************************************************************/#ifndef _H_clsltpsr#define _H_clsltpsr#if OBJECT_SYSTEM && (! BLOAD_ONLY) && (! RUN_TIME)#define MATCH_RLN "pattern-match"#define REACTIVE_RLN "reactive"#define NONREACTIVE_RLN "non-reactive"#ifndef _H_object#include "object.h"#endiftypedef struct tempSlotLink { SLOT_DESC *desc; struct tempSlotLink *nxt; } TEMP_SLOT_LINK;#ifdef LOCALE#undef LOCALE#endif#ifdef _CLSLTPSR_SOURCE_#define LOCALE#else#define LOCALE extern#endif#if ANSI_COMPILERLOCALE TEMP_SLOT_LINK *ParseSlot(char *,TEMP_SLOT_LINK *,PACKED_CLASS_LINKS *,int,int);LOCALE VOID DeleteSlots(TEMP_SLOT_LINK *);#elseLOCALE TEMP_SLOT_LINK *ParseSlot();LOCALE VOID DeleteSlots();#endif#ifndef _CLSLTPSR_SOURCE_#endif#endif#endif
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?