代码搜索:bug
找到约 10,000 项符合「bug」的源代码
代码结果 10,000
www.eeworm.com/read/470693/1462911
c bug21.c
typedef struct {
int knock_on_wood; /* leave it out and it works. */
int f1;
} FOO;
typedef struct {
FOO *b1;
} BAR;
Nase ()
{
int i, j;
FOO *foop;
BAR *barp;
for (i = 0; i < 2; i++) {
fo
www.eeworm.com/read/470693/1462943
c bug13.c
struct tree_common
{
int uid;
unsigned int code : 8;
unsigned int code2 : 8;
unsigned external_attr : 1;
unsigned public_attr : 1;
};
static int
duplicate_decls (x)
register struct tr
www.eeworm.com/read/470693/1462967
c bug18.c
main()
{
if ((signed int) 1 < (signed int) -2147483648)
printf("true\n");
}
www.eeworm.com/read/470693/1462983
c bug1.c
struct _XtTextSource {
/* ... */
void (* SetSelection)();
/* ... */
};
typedef struct _XtTextSource *XtTextSource;
typedef struct _TextPart {
XtTextSource source;
/* ... */
} TextPa
www.eeworm.com/read/470693/1463009
c bug22.c
void
Rotate (float angle)
{
float mag = (angle < 0) ? -angle : angle;
}
www.eeworm.com/read/470693/1463030
c bug11.c
#define DD 2410065408
unsigned
foo (d)
double d;
{
return d;
}
#if foobar
main ()
{
#if bar
unsigned u = DD;
double d = (double) u;
#else
double d = (double) DD;
#endif
printf ("%u =
www.eeworm.com/read/470693/1463051
c bug6.c
main()
{
unsigned long L;
double D;
D = L = -3;
printf("L=%lu, D=%g\n", L, D);
return 0;
}
www.eeworm.com/read/470693/1463065
c bug5.c
enum bar
{
one,
two
};
enum bar foo;
void bar()
{
switch (foo)
{
case one:
case two:
printf ("one to two\n");
break;
}
}