📄 scanner.h
字号:
/*******************************************************/ /* "C" Language Integrated Production System */ /* */ /* CLIPS Version 6.20 01/31/02 */ /* */ /* SCANNER HEADER FILE */ /*******************************************************//*************************************************************//* Purpose: Routines for scanning lexical tokens from an *//* input source. *//* *//* Principal Programmer(s): *//* Gary D. Riley *//* *//* Contributing Programmer(s): *//* *//* Revision History: *//* *//*************************************************************/#ifndef _H_scanner#define _H_scannerstruct token;#ifndef _H_pprint#include "pprint.h"#endif#ifdef LOCALE#undef LOCALE#endif#ifdef _SCANNER_SOURCE_#define LOCALE#else#define LOCALE extern#endifstruct token { unsigned short type; void *value; char *printForm; };#define SCANNER_DATA 57struct scannerData { char *GlobalString; size_t GlobalMax; size_t GlobalPos; long LineCount; int IgnoreCompletionErrors; };#define ScannerData(theEnv) ((struct scannerData *) GetEnvironmentData(theEnv,SCANNER_DATA)) LOCALE void InitializeScannerData(void *); LOCALE void GetToken(void *,char *,struct token *); LOCALE void CopyToken(struct token *,struct token *); LOCALE void ResetLineCount(void *); LOCALE long GetLineCount(void *); LOCALE void IncrementLineCount(void *); LOCALE void DecrementLineCount(void *);#endif
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -