代码搜索:stdlib
找到约 10,000 项符合「stdlib」的源代码
代码结果 10,000
www.eeworm.com/read/169775/5410429
c labs.c
/* labs.c - labs file for stdlib */
/* Copyright 1992-1993 Wind River Systems, Inc. */
/*
modification history
--------------------
01c,08feb93,jdi documentation cleanup for 5.1.
01b,20sep92,smb
www.eeworm.com/read/169775/5410433
c abort.c
/* abort.c - abort file for stdlib */
/* Copyright 1992-1993 Wind River Systems, Inc. */
/*
modification history
--------------------
01d,08feb93,jdi documentation cleanup for 5.1.
01c,20sep92,smb
www.eeworm.com/read/164379/5489955
c 实例8-5.c
#include
main()
{
printf("output begin\n");
printf("content in buffer");
exit(0);
}
www.eeworm.com/read/162614/5540416
c pass34-frag.c
#include
#include
#include
void test (int *k)
{
if (*k > 5) { *k --; }
}
int z;
int main ()
{
/* z is initialized, but not via a pointer, so not instrumented */
z
www.eeworm.com/read/162614/5540435
c pass33-frag.c
#include
#include
#include
void test (int *k)
{
if (*k > 5) { *k --; }
}
int main ()
{
int z;
/* z is initialized, but not via a pointer, so not instrumented */
z =
www.eeworm.com/read/162614/5540440
c pass1-frag.c
#include
#include
#include
int main ()
{
int foo [10];
foo[9] = 0;
return 0;
}
www.eeworm.com/read/162614/5540463
c pass2-frag.c
#include
#include
#include
int main ()
{
int foo [10][10];
foo[9][0] = 0;
return 0;
}
www.eeworm.com/read/162614/5540464
c pass14-frag.c
#include
#include
#include
int main ()
{
struct a {
int x;
int y;
char z;
};
struct a k;
struct a *p;
p = &k;
p->z = 'q';
return 0;
}
www.eeworm.com/read/162614/5540469
c pass17-frag.c
#include
#include
#include
int main ()
{
strlen("123456789");
return 0;
}
www.eeworm.com/read/162614/5540487
c pass3-frag.c
#include
#include
#include
int main ()
{
int foo [10][10][10];
foo[9][9][0] = 0;
return 0;
}