代码搜索:L
找到约 10,000 项符合「L」的源代码
代码结果 10,000
www.eeworm.com/read/439082/1816932
h l1.h
/* $Id$
*
* This file is subject to the terms and conditions of the GNU General Public
* License. See the file "COPYING" in the main directory of this archive
* for more details.
*
* Copyright
www.eeworm.com/read/437033/1836810
l wc5.l
/* Oops; slight change from wc3.l introduces backtracking */
ws [ \t]
nonws [^ \t\n]
word {ws}*{nonws}+
words {word}{ws}+
%%
int cc = 0, wc = 0, lc = 0;
{word}{ws}* cc += yyleng; ++wc;
{word}
www.eeworm.com/read/437033/1836812
l wc4.l
/* Fastest version of wc: add rules to pick up newlines, too */
ws [ \t]
nonws [^ \t\n]
word {ws}*{nonws}+
words {word}{ws}+
%%
int cc = 0, wc = 0, lc = 0;
{word}{ws}* ++wc; cc += yyleng;
{wo
www.eeworm.com/read/437033/1836813
l wc1.l
/* First cut at a flex-based "wc" tool. */
ws [ \t]
nonws [^ \t\n]
%%
int cc = 0, wc = 0, lc = 0;
{nonws}+ cc += yyleng; ++wc;
{ws}+ cc += yyleng;
\n ++lc; ++cc;
{
printf( "%8d
www.eeworm.com/read/437033/1836815
l wc2.l
/* Somewhat faster "wc" tool: match more text with each rule */
ws [ \t]
nonws [^ \t\n]
word {ws}*{nonws}+
%%
int cc = 0, wc = 0, lc = 0;
{word}{ws}* cc += yyleng; ++wc;
{word}{ws}*\n cc += yy
www.eeworm.com/read/437033/1836816
l wc3.l
/* Somewhat faster still: potentially match a lot of text with each rule */
ws [ \t]
nonws [^ \t\n]
word {ws}*{nonws}+
words {word}{ws}+
%%
int cc = 0, wc = 0, lc = 0;
{word}{ws}* cc += yylen
www.eeworm.com/read/437018/1838720
l ifs_lex.l
%{ /* $Id: ifs_lex.l,v 1.12 91/12/31 14:30:36 bill Exp $ */
/*============================================================================
FILE ifs_lex.l
MEMBER OF process cmpp
Copyright 1991
Geor
www.eeworm.com/read/437018/1838724
l mod_lex.l
%{ /* $Id: mod_lex.l,v 1.13 91/12/19 13:37:27 bill Exp $ */
/*============================================================================
FILE mod_lex.l
MEMBER OF process cmpp
Copyright 1991
Geor