strngfun.h

来自「NASA 开发使用的一个专家系统」· C头文件 代码 · 共 76 行

H
76
字号
   /*******************************************************/   /*      "C" Language Integrated Production System      */   /*                                                     */   /*             CLIPS Version 6.05  04/09/97            */   /*                                                     */   /*             STRING FUNCTIONS HEADER FILE            */   /*******************************************************//*************************************************************//* Purpose:                                                  *//*                                                           *//* Principal Programmer(s):                                  *//*      Gary D. Riley                                        *//*                                                           *//* Contributing Programmer(s):                               *//*                                                           *//* Revision History:                                         *//*                                                           *//*************************************************************/#ifndef _H_strngfun#define _H_strngfun#ifndef _H_evaluatn#include "evaluatn.h"#endif#ifdef LOCALE#undef LOCALE#endif#ifdef _STRNGFUN_SOURCE_#define LOCALE#else#define LOCALE extern#endif#if ANSI_COMPILER   LOCALE VOID                           StringFunctionDefinitions(void);   LOCALE VOID                           StrCatFunction(DATA_OBJECT_PTR);   LOCALE VOID                           SymCatFunction(DATA_OBJECT_PTR);   LOCALE long int                       StrLengthFunction(void);   LOCALE VOID                           UpcaseFunction(DATA_OBJECT_PTR);   LOCALE VOID                           LowcaseFunction(DATA_OBJECT_PTR);   LOCALE long int                       StrCompareFunction(void);   LOCALE VOID                          *SubStringFunction(void);   LOCALE VOID                           StrIndexFunction(DATA_OBJECT_PTR);   LOCALE VOID                           EvalFunction(DATA_OBJECT_PTR);   LOCALE int                            Eval(char *,DATA_OBJECT_PTR);   LOCALE int                            BuildFunction(void);   LOCALE int                            Build(char *);#else   LOCALE VOID                           StringFunctionDefinitions();   LOCALE VOID                           StrCatFunction();   LOCALE VOID                           SymCatFunction();   LOCALE long int                       StrLengthFunction();   LOCALE VOID                           UpcaseFunction();   LOCALE VOID                           LowcaseFunction();   LOCALE long int                       StrCompareFunction();   LOCALE VOID                          *SubStringFunction();   LOCALE VOID                           StrIndexFunction();   LOCALE VOID                           EvalFunction();   LOCALE int                            Eval();   LOCALE int                            BuildFunction();   LOCALE int                            Build();#endif#endif

⌨️ 快捷键说明

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