factrhs.h
来自「NASA 开发使用的一个专家系统」· C头文件 代码 · 共 64 行
H
64 行
/*******************************************************/ /* "C" Language Integrated Production System */ /* */ /* CLIPS Version 6.05 04/09/97 */ /* */ /* FACT RHS PATTERN PARSER HEADER MODULE */ /*******************************************************//*************************************************************//* Purpose: *//* *//* Principal Programmer(s): *//* Gary D. Riley *//* *//* Contributing Programmer(s): *//* *//* Revision History: *//* *//*************************************************************/#ifndef _H_factrhs#define _H_factrhs#ifndef _H_expressn#include "expressn.h"#endif#ifndef _H_scanner#include "scanner.h"#endif#ifndef _H_factmngr#include "factmngr.h"#endif#ifndef _H_symbol#include "symbol.h"#endif#ifdef LOCALE#undef LOCALE#endif#ifdef _FACTRHS_SOURCE_#define LOCALE#else#define LOCALE extern#endif#if ANSI_COMPILER LOCALE struct expr *BuildRHSAssert(char *,struct token *,int *,int,int,char *); LOCALE struct expr *GetAssertArgument(char *,struct token *,int *,int,int,int *); LOCALE struct expr *GetRHSPattern(char *,struct token *,int *,int, int,int,int); LOCALE struct fact *StringToFact(char *);#else LOCALE struct expr *BuildRHSAssert(); LOCALE struct expr *GetAssertArgument(); LOCALE struct expr *GetRHSPattern(); LOCALE struct fact *StringToFact();#endif#endif
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?