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

📄 prcdrfun.h

📁 clips源代码
💻 H
字号:
   /*******************************************************/   /*      "C" Language Integrated Production System      */   /*                                                     */   /*             CLIPS Version 6.24  06/05/06            */   /*                                                     */   /*          PROCEDURAL FUNCTIONS HEADER FILE           */   /*******************************************************//*************************************************************//* Purpose:                                                  *//*                                                           *//* Principal Programmer(s):                                  *//*      Gary D. Riley                                        *//*      Brian L. Donnell                                     *//*                                                           *//* Contributing Programmer(s):                               *//*                                                           *//* Revision History:                                         *//*                                                           *//*      6.24: Renamed BOOLEAN macro type to intBool.         *//*                                                           *//*************************************************************/#ifndef _H_prcdrfun#define _H_prcdrfun#ifndef _H_evaluatn#include "evaluatn.h"#endif#ifdef LOCALE#undef LOCALE#endif#ifdef _PRCDRFUN_SOURCE#define LOCALE#else#define LOCALE extern#endiftypedef struct loopCounterStack  {   long long loopCounter;   struct loopCounterStack *nxt;  } LOOP_COUNTER_STACK;#define PRCDRFUN_DATA 13struct procedureFunctionData  {    int ReturnFlag;   int BreakFlag;   LOOP_COUNTER_STACK *LoopCounterStack;   struct dataObject *BindList;  };#define ProcedureFunctionData(theEnv) ((struct procedureFunctionData *) GetEnvironmentData(theEnv,PRCDRFUN_DATA))   LOCALE void                           ProceduralFunctionDefinitions(void *);   LOCALE void                           WhileFunction(void *,DATA_OBJECT_PTR);   LOCALE void                           LoopForCountFunction(void *,DATA_OBJECT_PTR);   LOCALE long long                      GetLoopCount(void *);   LOCALE void                           IfFunction(void *,DATA_OBJECT_PTR);   LOCALE void                           BindFunction(void *,DATA_OBJECT_PTR);   LOCALE void                           PrognFunction(void *,DATA_OBJECT_PTR);   LOCALE void                           ReturnFunction(void *,DATA_OBJECT_PTR);   LOCALE void                           BreakFunction(void *);   LOCALE void                           SwitchFunction(void *,DATA_OBJECT_PTR);   LOCALE intBool                        GetBoundVariable(void *,struct dataObject *,struct symbolHashNode *);   LOCALE void                           FlushBindList(void *);#endif

⌨️ 快捷键说明

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