⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 cstrnutl.h

📁 NASA 开发使用的一个专家系统
💻 H
字号:
   /*******************************************************/   /*      "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 + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -