代码搜索:stdlib

找到约 10,000 项符合「stdlib」的源代码

代码结果 10,000
www.eeworm.com/read/249482/4450676

dat funtc191b.dat

#include #include int main(void) { char *s; s=getenv("COMSPEC"); printf("Command processor: %s ",s); return 0; }
www.eeworm.com/read/247871/4472537

h lzmaramdecode.h

/* LzmaRamDecode.h */ #ifndef __LzmaRamDecode_h #define __LzmaRamDecode_h #include /* LzmaRamGetUncompressedSize: In: inBuffer - input data inSize - input data si
www.eeworm.com/read/240204/4577251

c termreader.c

#include "termreader.h" #include #include "libicl.h" struct TermReaderStruct { TermReaderGetNext getNext; TermReaderType type; gint listenSocket; gint error; TermReader
www.eeworm.com/read/239722/4595824

c hello.c

#include #include int main() { printf("Hello World\n"); printf("Have a nice day\n"); exit (EXIT_SUCCESS); }
www.eeworm.com/read/229812/4743792

c wfont.c

#include #include #include "watzee.h" /* * CreateFonts -- set up two logical font structures */ extern void CreateFonts( void ) /*****************************/
www.eeworm.com/read/229812/4743966

c wfont.c

#include #include #include "watzee.h" /* * CreateFonts -- set up two logical font structures */ extern void CreateFonts( void ) /*****************************/
www.eeworm.com/read/229812/4744462

c max.c

#include #include void main() { int a; /* * The following line will set the variable "a" to 10 * since 10 is greater than 1. */ a = max(
www.eeworm.com/read/229812/4744615

c free.c

#include #include void main() { char *buffer; buffer = (char *)malloc( 80 ); if( buffer == NULL ) { printf( "Unable to allocate memory\n" ); }
www.eeworm.com/read/229812/4744753

c strtod.c

#include #include void main() { double pi; pi = strtod( "3.141592653589793", NULL ); printf( "pi=%17.15f\n",pi ); }
www.eeworm.com/read/229812/4751304

gml strtoul.gml

.func strtoul wcstoul _ustrtoul #include unsigned long int strtoul( const char *ptr, char **endptr, int base ); .ixfunc2 '&Convers