代码搜索:malloc
找到约 10,000 项符合「malloc」的源代码
代码结果 10,000
www.eeworm.com/read/478267/6713918
cpp add.cpp
#include "add.h"
//////////////////////1.添加学生信息//////////////////////
struct student *addstudentinfo()
{
while (1)
{
temp=(struct student*)malloc(LEN);
system("cls");
winaddstudenti
www.eeworm.com/read/409898/11307606
makefile
LibCPath = LibC
#include LibC/malloc/Makefile
include LibC/stdio/Makefile
#include LibC/string/Makefile
#include LibC/assert/Makefile
LibCSrc = $(LibCMallocSrc) $(LibCStdioSrc) $(LibCStrin
www.eeworm.com/read/400959/11566550
cpp hfm.cpp
#include /* for size_t, printf() */
#include /* for getch() */
#include /* for tolower() */
#include /*
www.eeworm.com/read/260388/11729664
cpp exampl1.cpp
#include "example1.cpp"
int main()
{
void* pParser = ParseAlloc (malloc);
/* First input:
15 / 5
*/
Parse (pParser, INTEGER, 15);
Parse (pParser, DIVI
www.eeworm.com/read/258434/11864085
c amalloc.c
/*
AMALLOC - multi-dimensional malloc()
Allocates a multidimensional array dynamically, at runtime, so that
1: its elements can be accessed using multiple indirection
2: it can be dealloca
www.eeworm.com/read/341877/12056759
c amalloc.c
/*
AMALLOC - multi-dimensional malloc()
Allocates a multidimensional array dynamically, at runtime, so that
1: its elements can be accessed using multiple indirection
2: it can be dealloca
www.eeworm.com/read/254936/12111843
txt lsw.txt
// LZW compression
// Based on ORIGSRC\COdLZW.C written by David Bourgin
#include "stdafx.h"
#include
#include
#
www.eeworm.com/read/130553/14186316
c amalloc.c
/*
AMALLOC - multi-dimensional malloc()
Allocates a multidimensional array dynamically, at runtime, so that
1: its elements can be accessed using multiple indirection
2: it can be dealloca
www.eeworm.com/read/228579/14378697
h printmacros.h
/* PRINTF Macros
* Done to reduce malloc hits and fflush reqs
* (debugging aid that stuck)
* */
#define PRINTF0(x) printidx=sprintf(printbuf,x); \
printbuf[printidx]='\
www.eeworm.com/read/224980/14558085
cpp queue.cpp
#include
#include
#include "queue.h"
queue * MakeQueue( int qsize, int objsize )
{
queue * qp;
if( !( qp = ( queue *