cstrnutl.h
来自「NASA 开发使用的一个专家系统」· C头文件 代码 · 共 72 行
H
72 行
/*******************************************************/ /* "C" Language Integrated Production System */ /* */ /* CLIPS Version 6.05 04/09/97 */ /* */ /* CONSTRAINT UTILITY HEADER FILE */ /*******************************************************//*************************************************************//* Purpose: Utility routines for manipulating, initializing, *//* creating, copying, and comparing constraint records. *//* *//* Principal Programmer(s): *//* Gary D. Riley *//* *//* Contributing Programmer(s): *//* Brian Donnell *//* *//* Revision History: *//* *//*************************************************************/#ifndef _H_cstrnutl#define _H_cstrnutl#ifndef _H_constrnt#include "constrnt.h"#endif#ifdef LOCALE#undef LOCALE#endif#ifdef _CSTRNUTL_SOURCE_#define LOCALE#else#define LOCALE extern#endif#ifndef _CLIPS_STDIO_#define _CLIPS_STDIO_#include <stdio.h>#endif#if ANSI_COMPILER LOCALE struct constraintRecord *GetConstraintRecord(VOID); LOCALE int CompareNumbers(int,VOID *,int,VOID *); LOCALE struct constraintRecord *CopyConstraintRecord(CONSTRAINT_RECORD *); LOCALE int SetConstraintType(int,CONSTRAINT_RECORD *); LOCALE VOID SetAnyAllowedFlags(CONSTRAINT_RECORD *,int); LOCALE VOID SetAnyRestrictionFlags(CONSTRAINT_RECORD *,int); LOCALE CONSTRAINT_RECORD *ArgumentTypeToConstraintRecord(int); LOCALE CONSTRAINT_RECORD *FunctionCallToConstraintRecord(VOID *); LOCALE CONSTRAINT_RECORD *ExpressionToConstraintRecord(struct expr *);#else LOCALE struct constraintRecord *GetConstraintRecord(); LOCALE int CompareNumbers(); LOCALE struct constraintRecord *CopyConstraintRecord(); LOCALE int SetConstraintType(); LOCALE VOID SetAnyAllowedFlags(); LOCALE VOID SetAnyRestrictionFlags(); LOCALE CONSTRAINT_RECORD *ArgumentTypeToConstraintRecord(); LOCALE CONSTRAINT_RECORD *FunctionCallToConstraintRecord(); LOCALE CONSTRAINT_RECORD *ExpressionToConstraintRecord();#endif #endif
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?