代码搜索:malloc

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

代码结果 10,000
www.eeworm.com/read/109026/6176937

bsd_file_list

sys/domain.h include/sys/domain.h sys/errno.h include/sys/errno.h sys/ioccom.h include/sys/ioccom.h sys/ioctl.h include/sys/ioctl.h sys/malloc.h include/sys/malloc.h sys/mbuf.h include/sys/mbuf.h
www.eeworm.com/read/312645/3654243

bsd_file_list

sys/domain.h include/sys/domain.h sys/errno.h include/sys/errno.h sys/ioccom.h include/sys/ioccom.h sys/ioctl.h include/sys/ioctl.h sys/malloc.h include/sys/malloc.h sys/mbuf.h include/sys/mbuf.h
www.eeworm.com/read/398200/2385756

bsd_file_list

sys/domain.h include/sys/domain.h sys/errno.h include/sys/errno.h sys/ioccom.h include/sys/ioccom.h sys/ioctl.h include/sys/ioctl.h sys/malloc.h include/sys/malloc.h sys/mbuf.h include/sys/mbuf.h sys/
www.eeworm.com/read/390208/8476337

c shunxu.c

#include #include #include #define ListSize 100 typedef struct SeqList { int node[ListSize]; int length;
www.eeworm.com/read/285401/8842428

c bitio.c

#include "BITIO.h" #include BITFILE * OpenOutputBitFile(char * chFile) { BITFILE * pBitFile; pBitFile = (BITFILE *)malloc(sizeof(BITFILE)); if (pBitFile == NULL) return NU
www.eeworm.com/read/381516/9087706

cpp syneditview.cpp

//////////////////////////////////////////////////////////////////////////// #include "stdafx.h" #include #include #include "SynEditView.h" const COOKIE_COMMENT = 0x
www.eeworm.com/read/182041/9220951

c intrcpt.c

//================================== // APISPY32 - Matt Pietrek 1995 // FILE: INTRCPT.C //================================== #include #include #include #includ
www.eeworm.com/read/182041/9220963

c return.c

//================================== // APISPY32 - Matt Pietrek 1995 // FILE: RETURN.C //================================== #include #include #include "perthred.h" #inclu
www.eeworm.com/read/181921/9226134

c 广度优先搜索.c

#include #include #define MAX 20 //定义节点容量 static int visited[MAX]; typedef struct //图结构 {
www.eeworm.com/read/376610/9312083

cpp linklist.cpp

#include typedef int ElemType; typedef struct LNode { ElemType data; struct LNode *next; }LinkList; void InitList(LinkList *&L) { L=(LinkList *)malloc(sizeof(LNode));