代码搜索:malloc

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

代码结果 10,000
www.eeworm.com/read/400291/11579675

h stdafx.h

// stdafx.h : 标准系统包含文件的包含文件, // 或是经常使用但不常更改的 // 特定于项目的包含文件 // #pragma once #define WIN32_LEAN_AND_MEAN // 从 Windows 头中排除极少使用的资料 #include #include #include "malloc.h"
www.eeworm.com/read/347982/11619983

c 53.c

#include #include #include int main() { char *mempointer; char buffer[] = "This is a test of the mtrace function"; /调用函数mtrace来记录内存泄露与溢出**/ mtrace(); //sete
www.eeworm.com/read/158042/11648016

h stdafx.h

// stdafx.h : 标准系统包含文件的包含文件, // 或是常用但不常更改的项目特定的包含文件 // #pragma once #define WIN32_LEAN_AND_MEAN // 从 Windows 头中排除极少使用的资料 // Windows 头文件: #include // C 运行时头文件 #include
www.eeworm.com/read/261343/11653751

c bufalloc.c

#include void *bufalloc(size_t *size, size_t minsize) { void *buffer; size_t bufsize; for (bufsize = *size; bufsize >= minsize && !(buffer = malloc(bufsize)); bufsi
www.eeworm.com/read/261210/11659351

h dirutil.h

/* dirutil.h ... directory utilities. * C. Scott Ananian * * $Id: dirutil.h,v 1.1.1.1 2000/12/23 08:19:51 scott Exp $ */ /* Returned malloc'ed string
www.eeworm.com/read/347150/11688028

c rdmalloc.c

/************************************************************* File Name: RdMalloc.c (RAMDisk 4.1) * ************************************************************** Programmer: chilong Last
www.eeworm.com/read/156976/11749205

c gsm_create.c

/* * Copyright 1992 by Jutta Degener and Carsten Bormann, Technische * Universitaet Berlin. See the accompanying file "COPYRIGHT" for * details. THERE IS ABSOLUTELY NO WARRANTY FOR THIS SOFTWARE.
www.eeworm.com/read/156870/11759391

h stdafx.h

// stdafx.h : 标准系统包含文件的包含文件, // 或是常用但不常更改的项目特定的包含文件 // #pragma once #define WIN32_LEAN_AND_MEAN // 从 Windows 头中排除极少使用的资料 // C 运行时头文件 #include #include #include
www.eeworm.com/read/259865/11760757

c chk_disk.c

#include #include #include void main(void) { struct fatinfo fat; long sector, total_sectors; void *buffer; getfat(3, &fat); total_sectors = fa
www.eeworm.com/read/155592/11862046

c bufalloc.c

#include void *bufalloc(size_t *size, size_t minsize) { void *buffer; size_t bufsize; for (bufsize = *size; bufsize >= minsize && !(buffer = malloc(bufsize)); bufsi