代码搜索:bug
找到约 10,000 项符合「bug」的源代码
代码结果 10,000
www.eeworm.com/read/233448/4682774
c bug23.c
main()
{
static char static_char_array[1];
static char *static_char_pointer;
static char static_char;
char char_array[1];
char *char_pointer;
char character;
char *cp, c;
c = cp -
www.eeworm.com/read/233448/4682777
c bug4.c
int foo()
{
char c;
return (c ^ 30 ) > (c ^ 40 );
/*
these also get the signal :
return (c ^ 30 ) == (c ^ 40 );
return ((int)c ^ 30 ) > (c ^ 40 );
also fails if c is "extern char"
th
www.eeworm.com/read/233448/4682783
c bug2.c
BUG2 (p) int *p;
{
int a = 0;
if (*p == a)
return 0;
else
return 1;
}
www.eeworm.com/read/233448/4682806
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/233448/4682838
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/233448/4682862
c bug18.c
main()
{
if ((signed int) 1 < (signed int) -2147483648)
printf("true\n");
}
www.eeworm.com/read/233448/4682878
c bug1.c
struct _XtTextSource {
/* ... */
void (* SetSelection)();
/* ... */
};
typedef struct _XtTextSource *XtTextSource;
typedef struct _TextPart {
XtTextSource source;
/* ... */
} TextPa
www.eeworm.com/read/233448/4682904
c bug22.c
void
Rotate (float angle)
{
float mag = (angle < 0) ? -angle : angle;
}