代码搜索结果
找到约 10,000 项符合
L 的代码
parser.l
%{
#include
#include
#include
#include "grammer.h"
/*
our grammer for the config file is:
begin
send
recv
end
l.txt
this ia s input disk file.
mgllex.l
%{
#include "mglyac.h"
#include
extern int lineno;
%}
ws [ \t]+
comment #.*
qstring \"[^\"\n]*[\"\n]
id [a-zA-Z][a-zA-Z0-9]*
nl \n
%%
{ws} ;
{comment} ;
{q