代码搜索:malloc
找到约 10,000 项符合「malloc」的源代码
代码结果 10,000
www.eeworm.com/read/135531/13923111
h ufortify.h
/*
* FILE:
* ufortify.h
*
* DESCRIPTION:
* User options for fortify. Changes to this file require fortify.c to be
* recompiled, but nothing else.
*/
#ifndef __UFORTIFY_H__
#define __UFORTI
www.eeworm.com/read/410339/2211378
ver sis_main.ver
#define __ver_sis_malloc a3329ed5
#define sis_malloc _set_ver(sis_malloc)
#define __ver_sis_free ced25333
#define sis_free _set_ver(sis_free)
#define __ver_sis_dispinfo 0c4f5f15
#define sis_dispinfo _
www.eeworm.com/read/290384/8485981
cpp 宾馆管理系统.cpp
#include
#include
#include
#include
#include
#include
#define newnode() (ptr)malloc(sizeof(message))
typedef struct message
{
www.eeworm.com/read/165647/10055492
cpp david.cpp
#include // cin 及 cout
#include // 用到申请内存函数 malloc() 和释放内存函数 free()
#include // 字符串处理
#include
www.eeworm.com/read/455290/7373538
cpp sqstack.cpp
#include "SqStack.h"
#include
#include
Status InitStack(SqStack &s)
{
s.base = ( SElemType * )malloc(STACK_INIT_SIZE*sizeof(SElemType));
if(!s.base) return OVERFLOW;
s
www.eeworm.com/read/298894/7927110
c ieee802154a.c
/** \file */
#include "ieee802154a.h"
#ifdef MATLAB
#define free mxFree
#define malloc mxMalloc
#define realloc mxRealloc
#endif
#define CHUNK_SIZE 1000
void
malloc_channel_cluster_L(ieee802154a_c
www.eeworm.com/read/146255/12661896
cpp huffman_main.cpp
#ifndef NULL
#define NULL 0
#endif
#include "HuffNode.h"
#include "Queue_c.h"
#include "stdio.h"
#include "malloc.h"
struct Queue * code_queue=(struct Queue *)
malloc(sizeof(struct
www.eeworm.com/read/144627/12779668
c misc.c
#include
#include
#include
#include "misc.h"
void *My_Malloc(long size)
{
void *ptr;
ptr=(void *)malloc(size);
if(!ptr)
{
My_Error("Out
www.eeworm.com/read/324393/13265017
cpp cunchu.cpp
#include "stdio.h"
#include
#include
#include "iostream.h"
#define getjcb(type) (type*)malloc(sizeof(type))
#define getsub(type) (type*)malloc(sizeof(type))
#define NULL 0
www.eeworm.com/read/318866/13468517
txt migong.txt
#include
#include
#define STACK_INIT_SIZE 100
typedef struct
{
int *base;
int *top;
int stacksize;
}sqstack;
int initstack(sqstack *s)
{
s->base=(int *)malloc(ST