代码搜索:bug
找到约 10,000 项符合「bug」的源代码
代码结果 10,000
www.eeworm.com/read/221464/4830487
cpp bug_000008.cpp
/*=============================================================================
Copyright (c) 2003 Martin Wille
http://spirit.sourceforge.net/
Use, modification and distribution is su
www.eeworm.com/read/195013/5122667
txt bug-list.txt
Bug List
21 January 1999
Michael Elizabeth Chastain,
- If a variable has a value of "m" in the previous .config file,
and a type of bool in the Config script, then all the in
www.eeworm.com/read/190666/5178623
c bug24.c
struct ack {
char a, b, c;
};
main()
{
struct ack bad;
foo(bad);
}
foo(c)
struct ack c;
{
}
www.eeworm.com/read/190666/5178633
c bug3.c
BUG2 (p) char *p;
{
int a = 0;
if (*p == a)
return 0;
else
return 1;
}
www.eeworm.com/read/190666/5178639
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/190666/5178642
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/190666/5178648
c bug2.c
BUG2 (p) int *p;
{
int a = 0;
if (*p == a)
return 0;
else
return 1;
}