factbin.h

来自「NASA 开发使用的一个专家系统」· C头文件 代码 · 共 52 行

H
52
字号
   /*******************************************************/   /*      "C" Language Integrated Production System      */   /*                                                     */   /*             CLIPS Version 6.05  04/09/97            */   /*                                                     */   /*            FACT BLOAD/BSAVE HEADER FILE             */   /*******************************************************//*************************************************************//* Purpose:                                                  *//*                                                           *//* Principal Programmer(s):                                  *//*      Gary D. Riley                                        *//*                                                           *//* Contributing Programmer(s):                               *//*                                                           *//* Revision History:                                         *//*                                                           *//*************************************************************/#ifndef _H_factbin#define _H_factbin#include "factbld.h"#ifdef LOCALE#undef LOCALE#endif  #ifdef _FACTBIN_SOURCE_#define LOCALE#else#define LOCALE extern#endif#if ANSI_COMPILER   LOCALE VOID                           FactBinarySetup(void);#else   LOCALE VOID                           FactBinarySetup();#endif#ifndef _FACTBIN_SOURCE_   extern struct factPatternNode HUGE_ADDR  *FactPatternArray;#endif#define BsaveFactPatternIndex(patPtr) ((patPtr == NULL) ? -1L : ((struct factPatternNode *) patPtr)->bsaveID)#define BloadFactPatternPointer(i) ((struct factPatternNode *) ((i == -1L) ? NULL : &FactPatternArray[i]))#endif

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?