代码搜索:stdlib

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

代码结果 10,000
www.eeworm.com/read/233448/4692467

c pass17-frag.c

#include #include #include int main () { strlen("123456789"); return 0; }
www.eeworm.com/read/229812/4744660

c malloc.c

#include void main() { char *buffer; buffer = (char *)malloc( 80 ); if( buffer != NULL ) { /* body of program */ free( buffer ); } }
www.eeworm.com/read/229562/4754299

cpp taostring.cpp

// // Copyright (C) 2004, 2005 Pingtel Corp. // // // $$ //////////////////////////////////////////////////////////////////////// ////// #include #include #ifdef TEST #include
www.eeworm.com/read/216875/4879340

cpp editorsstylesdemoconvert.cpp

//--------------------------------------------------------------------------- #include #include #pragma hdrstop #include "EditorsStylesDemoConvert.h" #include "Jpeg.hpp" /
www.eeworm.com/read/197436/5096832

c drum.c

/*------------------------------------- DRUM.C -- MIDI Drum Machine (c) Charles Petzold, 1998 -------------------------------------*/ #include #include
www.eeworm.com/read/340665/3269537

c pvallocr.c

#include void * _pvalloc_r (struct _reent *ptr, size_t bytes) { return pvalloc (bytes); }
www.eeworm.com/read/340665/3269617

c mtrimr.c

#include void * _malloc_trim_r (struct _reent *ptr, size_t pad) { return 0; }
www.eeworm.com/read/340665/3269641

c vallocr.c

#include void * _valloc_r (struct _reent *ptr, size_t bytes) { return valloc (bytes); }
www.eeworm.com/read/340665/3269719

c mallocr.c

#include void * _malloc_r (struct _reent *ptr, size_t size) { return malloc (size); }
www.eeworm.com/read/319506/3555678

c hello.c

#include #include int main() { printf("Hello World\n"); exit (EXIT_SUCCESS); }