代码搜索:parse
找到约 10,000 项符合「parse」的源代码
代码结果 10,000
www.eeworm.com/read/365517/9859192
ini httpd.ini
[ISAPI_Rewrite]
# 3600 = 1 hour
CacheClockRate 3600
RepeatLimit 32
# Protect httpd.ini and httpd.parse.errors files
# from accessing through HTTP
RewriteRule /Files/(.*)$ /read.asp\?f=$1
www.eeworm.com/read/365517/9859205
ini httpd.ini
[ISAPI_Rewrite]
# 3600 = 1 hour
CacheClockRate 3600
RepeatLimit 32
# Protect httpd.ini and httpd.parse.errors files
# from accessing through HTTP
RewriteRule /Files/(.*)$ /read.asp\?f=$1
www.eeworm.com/read/460364/7252736
c console.c
/* console interface */
#include "crc32.h"
#include
#include "srv.h"
#include
void console(char *filename)
{
char *strtolower(char *);
int parse(char *, char **);
www.eeworm.com/read/448678/7527184
h parseconf.h
#ifndef VSF_PARSECONF_H
#define VSF_PARSECONF_H
/* vsf_parseconf_load_file()
* PURPOSE
* Parse the given file as a vsftpd config file. If the file cannot be
* opened for whatever reason, a fatal e
www.eeworm.com/read/441855/7663735
c util.c
#include "globals.h"
#include "util.h"
#include "parse.h"
void printType(Type type)
{
switch(type){
case Void: fprintf(listing,"Void"); break;
case Integer: fprintf(listing,"Integer"); b
www.eeworm.com/read/296483/8100331
h strtokp.h
// strtokp.h
// using strtok to parse an entire string at once
// copyright SafeTP Development Group, Inc., 2000 Terms of use are as specified in license.txt
#ifndef __STRTOKP_H
#define __STRTOKP_H
www.eeworm.com/read/328216/13040332
c parser.c
#include"global.h"
int lookahead;
parse() //分析并翻译表达式列表
{
lookahead = lexan();
while(lookahead !=DONE){
expr();/*emit(DONE,DONE);*/match(';');
}
}
expr()
{
int t;
term();
while(1)
www.eeworm.com/read/140162/13101474
h ccnode.h
/* CCNODE.H - Declarations for Parse Tree Nodes
**
** (c) Copyright Ken Harrenstien 1989
** All changes after v.25, 8-Apr-1988
** (c) Copyright Ken Harrenstien, SRI International 1985, 1986
**
www.eeworm.com/read/321010/13413784
cs class1.cs
using System;
using System.Net;
using System.Net.Sockets;
class Server
{
static void Main(string[] args)
{
IPAddress ip=IPAddress.Parse("127.0.0.1");
IPEndPoint iep=new IPEndPoint(ip,555