代码搜索:L
找到约 10,000 项符合「L」的源代码
代码结果 10,000
www.eeworm.com/read/105963/15650201
l dsl.l
/*
Distributed data base Facilitator
Parser
Version 1.0
Copyright 1986 Columbia Union College
By Leroy G. Cain
*/
%{
#include "string.h"
#include "parser.h"
#include "rwsearch.c"
%}
D [0-9]
E
www.eeworm.com/read/105792/15658790
l er.l
%{
/* er.l - A lexer for mtools stderr-output
*
* process this file with
* lex -Per er.l
* to re-generate lex.er.c from er.l
*
*/
int copyquestion (const char *, const char *);
int shallweco
www.eeworm.com/read/105759/15659366
l linput.l
%{
#include "input.tab.h"
extern int linenumber;
%}
%%
[\n] { linenumber++; }
#.*$ {}
[ \t]* {}
^ACTI { return ACTI ;}
^END { return END ;}
^EXEC { return EXEC ;}
^TASK
www.eeworm.com/read/105622/15663715
l lengs.l
%{
(* This is a Lex demonstration program taken from the UNIX manual which
which counts words in a file.
Usage: lengs
www.eeworm.com/read/105622/15663716
l magic.l
%{
(* Lex demonstration program for the use of start states, taken from the UNIX
manual. This program copies standard input to standard output, and changes
the word `magic' to `first', `s
www.eeworm.com/read/105622/15663717
l paslex.l
%{
(* PASLEX.L: lexical analyzer for Pascal, adapted to TP Lex, 2-28-89 AG *)
%}
%{
(*
* lex input file for pascal scanner
*
* extensions: to ways to spell "external" and "->" ok for
www.eeworm.com/read/105622/15663719
l exprlex.l
(* Lexical analyzer for the sample Yacc program in Expr.y. *)
L [A-Za-z]
D [0-9]
%%
var result : integer;
{D}+(\.{D}+)?([Ee][+-]?{D}+)? begin
val(yytext, yylval.yyReal,
www.eeworm.com/read/105622/15663721
l digram.l
%{
(* Lex demonstration program for the use of the REJECT routine, taken from
the UNIX manual. This program produces a digram table of the input file
(counts all pairs of lowercase letter
www.eeworm.com/read/105622/15663725
l yreflex.l
%{
(* Lexical analyzer for the YREF program, V1.1 4-30-91 AG
implements a lexical analyzer for Yacc grammars *)
function yywrap : Boolean;
begin
yywrap := true; (* files are closed