📄 strngfun.h
字号:
/*******************************************************/ /* "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 + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -