代码搜索结果
找到约 10,000 项符合
L 的代码
lcmm.l
%{
#include
#include "y.tab.h"
#include "tree.h"
void comment();
%}
D [0-9]
L [a-zA-Z]
%option yylineno
%%
"/*" {comment();}
"int" {return INT;
tool.l
%{
#include
void comment();
void delete();
void ident();
void delete_define();
%}
%option yylineno
%%
"/*" {comment();}
"#" {delete_define();}
^[ \t]*
nepc.l
%{
#include "y.tab.h"
#include "nepc.h"
%}
digit [0-9]
xdigit [0-9a-fA-F]
odigit [0-7]
dec_int 0|[1-9]{digit}*
dec_flt (0\.{digit}*)|([1-9]{digit}*\.{digit}*)
oct_int 0{o
lcmm.l
%{
#include
#include "y.tab.h"
void comment();
%}
D [0-9]
L [a-zA-Z]
%option yylineno
%%
"/*" {comment();}
"int" {return INT;}
"real"
tiny.l
/****************************************************/
/* File: tiny.l */
/* Lex specification for TINY */
/* Compiler Construction: Princi
l.m
%
% routine to get the square root of a number
%
% usage: via tree structured GA
%
function out = l(x)
%
%
out = log(x);
l.m
%
% routine to get the square root of a number
%
% usage: via tree structured GA
%
function out = l(x)
%
%
out = log(x);