代码搜索:while
找到约 10,000 项符合「while」的源代码
代码结果 10,000
www.eeworm.com/read/172774/5382103
c strcpy.c
char *strcpy(char *s1, char *s2)
{
char *s = s1;
while (*s2)
{
*s1++ = *s2++;
}
*s1 = 0;
return s;
}
www.eeworm.com/read/162614/5527873
c aaa.c
foo (a, b)
{
int t;
while (b < 0)
{
t = a;
a = b;
b = t;
}
return a + b;
}
www.eeworm.com/read/162614/5528186
c 960220-1.c
f ()
{
unsigned long long int a = 0, b;
while (b > a)
;
}
www.eeworm.com/read/162614/5528387
c 921103-1.c
struct {
unsigned int f1, f2;
} s;
f()
{
unsigned x, y;
x = y = 0;
while (y % 4)
y++;
g(&s.f2, s.f1 + x, 4);
}
www.eeworm.com/read/159853/5580334
c strcpy.c
char *strcpy(char *s1, char *s2)
{
char *s = s1;
while (*s2)
{
*s1++ = *s2++;
}
*s1 = 0;
return s;
}