📄 facthsh.h
字号:
/*******************************************************/ /* "C" Language Integrated Production System */ /* */ /* CLIPS Version 6.05 04/09/97 */ /* */ /* FACT HASHING MODULE */ /*******************************************************//*************************************************************//* Purpose: *//* *//* Principal Programmer(s): *//* Gary D. Riley *//* *//* Contributing Programmer(s): *//* *//* Revision History: *//* *//*************************************************************/#ifndef _H_facthsh#define _H_facthshstruct factHashEntry;#ifndef _H_factmngr#include "factmngr.h"#endifstruct factHashEntry { struct fact *theFact; struct factHashEntry *next; };#define SIZE_FACT_HASH 1013#ifdef LOCALE#undef LOCALE#endif#ifdef _FACTHSH_SOURCE_#define LOCALE#else#define LOCALE extern#endif#if ANSI_COMPILER LOCALE VOID AddHashedFact(struct fact *,int); LOCALE BOOLEAN RemoveHashedFact(struct fact *); LOCALE int HandleFactDuplication(VOID *); LOCALE BOOLEAN GetFactDuplication(void); LOCALE BOOLEAN SetFactDuplication(int); LOCALE VOID InitializeFactHashTable(void); LOCALE VOID ShowFactHashTable(void);#else LOCALE VOID AddHashedFact(); LOCALE BOOLEAN RemoveHashedFact(); LOCALE int HandleFactDuplication(); LOCALE BOOLEAN GetFactDuplication(); LOCALE BOOLEAN SetFactDuplication(); LOCALE VOID InitializeFactHashTable(); LOCALE VOID ShowFactHashTable();#endif#endif
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -