代码搜索:unsigned
找到约 10,000 项符合「unsigned」的源代码
代码结果 10,000
www.eeworm.com/read/162614/5527769
c bitw.c
foo (a)
unsigned a;
{
unsigned b = 0;
if ((a & 12345678) > b)
return 1;
return 0;
}
www.eeworm.com/read/162614/5527790
c cvt.c
foo (p)
unsigned char *p;
{
unsigned char a = 0;
if (*p > 0)
return 1;
return 0;
}
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/162614/5528442
c 20010107-1.c
unsigned long x[4];
void foo(void)
{
((void (*)())(x+2))();
}