代码搜索:Scanner
找到约 4,788 项符合「Scanner」的源代码
代码结果 4,788
www.eeworm.com/read/316346/13524249
ncb scanner.ncb
www.eeworm.com/read/316346/13524257
h scanner.h
#ifndef SCANNER_H
#define SCANNER_H
#include "string.h"
#include "stdio.h"
#include "stdlib.h"
#include "ctype.h"
#include "stdarg.h"
#include "math.h"
enum Token_Type //记号种类
{
ORI
www.eeworm.com/read/316346/13524261
opt scanner.opt
www.eeworm.com/read/316346/13524274
dsw scanner.dsw
Microsoft Developer Studio Workspace File, Format Version 6.00
# 警告: 不能编辑或删除该工作区文件!
###############################################################################
Project: "scanner"=".\scanner
www.eeworm.com/read/315460/13542190
h scanner.h
/*
* File: scanner.h
* ---------------
* This file is the interface to a package that divides
* a line into individual "tokens". A token is defined
* to be either
*
* 1. a string of consecutiv
www.eeworm.com/read/315460/13542192
c scanner.c
/*
* File: scanner.c
* ---------------
* This file implements the scanner.h interface.
*/
#include
#include
#include "genlib.h"
#include "strlib.h"
#include "scanner.h"
/*
www.eeworm.com/read/315010/13554181
h scanner.h
/*******************************************************/
/* "C" Language Integrated Production System */
/* */
/*
www.eeworm.com/read/315010/13554393
c scanner.c
/*******************************************************/
/* "C" Language Integrated Production System */
/* */
/*
www.eeworm.com/read/314622/13563270
cpp scanner.cpp
#include "scanner.h"
#define TOKEN_LEN 100
static FILE *InFile; //输入的文件
unsigned int LineNo; //记录记号所在位置(行数)
static char TokenBuffer[TOKEN_LEN]; //记号缓冲区
//初始化
www.eeworm.com/read/314622/13563273
h scanner.h
#ifndef SCANNER_H
#define SCANNER_H
#include
#include
#include
#include
#include
#include
#include
#include
u