代码搜索:stdlib

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

代码结果 10,000
www.eeworm.com/read/319506/3555672

c hello.c

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

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/312645/3652600

old entries.old

D/common//// D/current//// D/i18n//// D/setjmp//// D/signals//// D/startup//// D/stdio//// D/stdlib//// D/string//// D/time////
www.eeworm.com/read/312645/3652601

old entries.extra.old

D/common//// D/current//// D/i18n//// D/setjmp//// D/signals//// D/startup//// D/stdio//// D/stdlib//// D/string//// D/time////
www.eeworm.com/read/308688/3712543

c hello.c

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

h insort.h

#include #include typedef int KeyType; typedef int OtherType; typedef struct { KeyType key; OtherType other_data; }RecordType;
www.eeworm.com/read/303129/3815260

h staticlist.h

#include #include #define Maxsize 100 #define ElemType char typedef struct { ElemType data; int cursor; }Component, StaticList[Maxsize];
www.eeworm.com/read/298657/3860856

c malloptr.c

#include int _mallopt_r (struct _reent *ptr, int param_number, int value) { return mallopt (param_number, value); }
www.eeworm.com/read/298657/3860865

c malignr.c

#include void * _memalign_r (struct _reent *ptr, size_t alignment, size_t bytes) { return memalign (alignment, bytes); }
www.eeworm.com/read/298657/3860866

c callocr.c

#include void * _calloc_r (struct _reent *ptr, size_t size, size_t len) { return calloc (size, len); }