strngrtr.h
来自「一套美国国家宇航局人工智能中心NASA的专家系统工具源代码」· C头文件 代码 · 共 67 行
H
67 行
/*******************************************************/ /* "C" Language Integrated Production System */ /* */ /* CLIPS Version 6.05 04/09/97 */ /* */ /* STRING I/O ROUTER HEADER FILE */ /*******************************************************//*************************************************************//* Purpose: I/O Router routines which allow strings to be *//* used as input and output sources. *//* *//* Principal Programmer(s): *//* Gary D. Riley *//* *//* Contributing Programmer(s): *//* *//* Revision History: *//* *//*************************************************************/#ifndef _H_strngrtr#define _H_strngrtr#ifndef _CLIPS_STDIO_#define _CLIPS_STDIO_#include <stdio.h>#endif#ifdef LOCALE#undef LOCALE#endif#ifdef _STRNGRTR_SOURCE_#define LOCALE#else#define LOCALE extern#endif/**************************//* I/O ROUTER DEFINITIONS *//**************************/#if ANSI_COMPILER LOCALE VOID InitializeStringRouter(void); LOCALE int OpenStringSource(char *,char *,int); LOCALE int OpenTextSource(char *,char *,int,int); LOCALE int CloseStringSource(char *); LOCALE int OpenStringDestination(char *,char *,int); LOCALE int CloseStringDestination(char *);#else LOCALE VOID InitializeStringRouter(); LOCALE int OpenStringSource(); LOCALE int OpenTextSource(); LOCALE int CloseStringSource(); LOCALE int OpenStringDestination(); LOCALE int CloseStringDestination();#endif #endif
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?