代码搜索:while

找到约 10,000 项符合「while」的源代码

代码结果 10,000
www.eeworm.com/read/101082/6249320

c expand.c

#ifndef lint static CHTYPE *sccsid = "@(#)expand.c 4.1 7/17/90"; #endif lint /************************************************************************ * * * Copyright (c) 1986 by
www.eeworm.com/read/101082/6249337

c service.c

#ifndef lint static CHTYPE *sccsid = "@(#)service.c 4.1 7/17/90"; #endif lint /************************************************************************ * * * Copyright (c) 1986 by
www.eeworm.com/read/101082/6249346

c args.c

#ifndef lint static CHTYPE *sccsid = "@(#)args.c 4.1 7/17/90"; #endif lint /************************************************************************ * * * Copyright (c) 1986 by *
www.eeworm.com/read/101082/6249371

c uniq.c

static char *sccsid = "@(#)uniq.c 4.1 (ULTRIX) 7/17/90"; /* * Deal with duplicated lines in a file */ #include #include int fields; int letters; int linec; char mode; int uniq; c
www.eeworm.com/read/101082/6249490

c ts.c

#ifndef lint static char sccsid[] = "@(#)ts.c 4.2 8/11/83"; #endif /* ts.c: minor string processing subroutines */ match (s1, s2) char *s1, *s2; { while (*s1 == *s2) if (*s1++ == '\0') return
www.eeworm.com/read/101082/6249729

c ssequal.c

/* ssequal.c - initially equal? */ ssequal (substr, str) register char *substr, *str; { if (!substr) substr = ""; if (!str) str = ""; while (*substr) if (*substr++ !=
www.eeworm.com/read/101082/6249744

c copyip.c

/* copyip.c - copy a string array and return pointer to end */ char **copyip (p, q) register char **p, **q; { while (*p) *q++ = *p++; *q = 0; return q; }
www.eeworm.com/read/101082/6250246

c ssequal.c

/* ssequal.c - initially equal? */ ssequal (substr, str) register char *substr, *str; { if (!substr) substr = ""; if (!str) str = ""; while (*substr) if (*substr++ !=
www.eeworm.com/read/101082/6250261

c copyip.c

/* copyip.c - copy a string array and return pointer to end */ char **copyip (p, q) register char **p, **q; { while (*p) *q++ = *p++; *q = 0; return q; }
www.eeworm.com/read/101082/6250586

c hash.c

#ifndef lint static char sccsid[] = "@(#)hash.c 1.1 (Berkeley) 3/29/83"; #endif lint /* * Hash function. Used for pass 2 symbol table and string table, * and structure/union name passing between p