代码搜索:malloc

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

代码结果 10,000
www.eeworm.com/read/260986/11676171

cpp e03-02.cpp

// ======================================================= // Chapter 3, Example 2 // Demonstrating Dynamic Arrays. // ======================================================= #include
www.eeworm.com/read/227427/14425634

readme

------------------------------------------------------------------------------- Debug Malloc Library ******************** Version 5.4.2 - October 2004 The debug memory allocation or "dmalloc" libra
www.eeworm.com/read/4060/24398

cpp e03-02.cpp

// ======================================================= // Chapter 3, Example 2 // Demonstrating Dynamic Arrays. // ======================================================= #include
www.eeworm.com/read/239264/4604557

makefile

SUBDIRS = syscalls crt malloc include $(PREX_SRC)/mk/lib.mk
www.eeworm.com/read/203067/15365939

c xginitvar.c

#include "xgrafixint.h" /****************************************************************/ /* Setup and malloc stuff for variable changer dealie, Payam 7.92 */ /*************************************
www.eeworm.com/read/292003/8383475

cpp linkqueue.cpp

#include #include #include #include "LinkQueue.h" //初始化队列 int InitQueue(LinkQueue* Q){ Q->front = (LinkQueueNode* ) malloc(sizeof(LinkQueueNode)); if(Q->f
www.eeworm.com/read/418794/10895991

c stdlib.c

#include "stdlib.h" #include "stdarg.h" #include "string.h" #include "stdint.h" //#include "defs.h" #ifdef LOG_MALLOC # ifndef STANDALONE # error LOG_MALLOC is only valid in STANDALONE b
www.eeworm.com/read/418794/10896415

bak stdlib.c.bak

#include "stdlib.h" #include "stdarg.h" #include "string.h" #include "stdint.h" //#include "defs.h" #ifdef LOG_MALLOC # ifndef STANDALONE # error LOG_MALLOC is only valid in STANDALONE b
www.eeworm.com/read/271765/10981129

vc makefile.vc

# MAKEFILE for MSVC 6.0 SP5 # # Tom St Denis, tomstdenis@yahoo.com # CC=cl AR=lib #here you can set the malloc/calloc/free functions you want XMALLOC=malloc XCALLOC=calloc XFREE=free #yo
www.eeworm.com/read/392599/7110023

cpp stack.cpp

#include "stack.h" #include #include //栈基本操作的实现 ////////////////////////////////// int InitStack(Sqstack &s) { s.base=(int *)malloc(Stack_init_size*sizeof(int)); if(!s.