代码搜索:malloc
找到约 10,000 项符合「malloc」的源代码
代码结果 10,000
www.eeworm.com/read/438562/7729764
c mem.c
#include "mem.h"
/*---------------------------------------------------------------------------*/
/*---------------------------------------------------------------------------*/
/*
* Mow-Song, Ng
www.eeworm.com/read/436521/7768660
h alloc.h
/*
** Definitions for a less error-prone memory allocator.
*/
#include
#define malloc DON'T CALL malloc DIRECTLY!
#define MALLOC(num,type) (type *)alloc( (num) * sizeof(type) )
ex
www.eeworm.com/read/436343/7771284
cpp lb.cpp
#include
typedef struct node
{
int data;
struct node *next;
}*Listlink;
/*前插法创建单链表*/
void qian_create(Listlink *head,int n)
{
int i;
Listlink p;
*head=(Listlink )m
www.eeworm.com/read/436250/7773862
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/434700/7848977
c 3_1_2.c
/* ======================================== */
/* 程式实例: 3_1_2.c */
/* 浮点数记忆体配置和释放 */
/* ======================================== */
#include
vo
www.eeworm.com/read/199482/7849105
cpp vector1.cpp
#include "stdafx.h"
/* make storage for one and two dimensional matricies */
#ifndef lint
static const char SCCSID[]="@(#)vector1.c 4.4 94/03/22 GIE REL";
#endif
#include
#include "pro
www.eeworm.com/read/399360/7867225
h huffman.h
#include "stdio.h"
#include "stdlib.h"
#include "malloc.h"
#include "string.h"
/*****************************************************************************************************************
www.eeworm.com/read/198958/7901109
c mem.c
#include "mem.h"
/*---------------------------------------------------------------------------*/
/*---------------------------------------------------------------------------*/
/*
* Mow-Song, Ng
www.eeworm.com/read/198955/7901505
c mem.c
#include "mem.h"
/*---------------------------------------------------------------------------*/
/*---------------------------------------------------------------------------*/
/*
* Mow-Song, Ng
www.eeworm.com/read/198320/7940310
c 习题4-打印扬辉三角系数.c
#include "datastru.h"
#include
#include
DATATYPE1 dellinkqueue(LINKQUEUE *q)
{/*删除队头元素并返回*/
LINKQLIST *p;
DATATYPE1 v;
if(q->front == q->rear)
{ printf("队列空\