代码搜索:stdlib
找到约 10,000 项符合「stdlib」的源代码
代码结果 10,000
www.eeworm.com/read/234134/4661921
c stripfx.c
#include
#include
#include "strpfx.h"
// Determine if a string is a prefix
// - case insensitive variant
char*
striprefix (
char* szTest,
char* szFull )
{
www.eeworm.com/read/234134/4661981
c lzshare.c
/* TS = none */
/*
** LZSHARE.C -- Shared code, variables, and defines for
** LZ compression/decompression module.
*/
#include
#include
#include
www.eeworm.com/read/233448/4692462
c pass2-frag.c
#include
#include
#include
int main ()
{
int foo [10][10];
foo[9][0] = 0;
return 0;
}
www.eeworm.com/read/229812/4744242
c snprntf.c
#include
#include
/* Format output into a buffer after determining its size */
void main()
{
int bufsize;
char *buffer;
bufsize = snprintf( NULL,
www.eeworm.com/read/229812/4744359
c min.c
#include
#include
void main()
{
int a;
/*
* The following line will set the variable "a" to 1
* since 10 is greater than 1.
*/
a = min( 1
www.eeworm.com/read/229812/4744361
c breakoff.c
#include
#include
void main()
{
long i;
FILE *tmpf;
tmpf = tmpfile();
if( tmpf != NULL ) {
printf( "Start\n" );
break_off();
for(
www.eeworm.com/read/229812/4744561
c putenv.c
#include
#include
void main()
{
char *path;
path = getenv( "INCLUDE" );
if( path != NULL )
printf( "INCLUDE=%s\n", path );
if( putenv( "INCLU
www.eeworm.com/read/229812/4744608
c sleep.c
/*
* The following program sleeps for the
* number of seconds specified in argv[1].
*/
#include
#include
void main( int argc, char *argv[] )
{
unsigned seconds;
www.eeworm.com/read/229812/4744631
c lfind.c
#include
#include
#include
#include
static const char *keywords[] = {
"auto",
"break",
"case",
"char",
/*
www.eeworm.com/read/229812/4750700
gml strtoll.gml
.func strtoll wcstoll _ustrtoll
#include
long long int strtoll( const char *ptr,
char **endptr,
int base );
.ixfunc2 '&Conversion' &func