代码搜索:L
找到约 10,000 项符合「L」的源代码
代码结果 10,000
www.eeworm.com/read/296025/8128029
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}*\
www.eeworm.com/read/296025/8128033
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}* c
www.eeworm.com/read/395980/8139349
jpg dh_l.jpg
www.eeworm.com/read/247327/12665130
gif tab_l.gif
www.eeworm.com/read/247176/12676257
gif l_bg.gif
www.eeworm.com/read/247161/12677406
gif l_bg.gif
www.eeworm.com/read/145896/12694128
gif l_back.gif
www.eeworm.com/read/145831/12700269
e l51.e
BL51 BANKED LINKER/LOCATER V4.03 - SN: Eval Version
COPYRIGHT KEIL ELEKTRONIK GmbH 1987 - 2000
E:\dpjsy\sss4\sss4.obj
TO E:\dpjsy\sss4\sss4.sym
NOOL RS(128)
LINK/LOCATE RUN COMPLETE. 0 WA
www.eeworm.com/read/145830/12700302
e l51.e
BL51 BANKED LINKER/LOCATER V4.03 - SN: Eval Version
COPYRIGHT KEIL ELEKTRONIK GmbH 1987 - 2000
E:\dpjsy\sss3\SSS3.obj
TO E:\dpjsy\sss3\SSS3.sym
NOOL RS(128)
LINK/LOCATE RUN COMPLETE. 0 WA
www.eeworm.com/read/145817/12700753
java l_search.java
/* =============== Program Description =============== */
/* 程序名称: l_search.c */
/* 程序目的: 设计一个线性查找的程序。 */
/* Written By Kuo-Yu Huang. (WANT Studio.)