代码搜索:malloc
找到约 10,000 项符合「malloc」的源代码
代码结果 10,000
www.eeworm.com/read/329680/12939101
c 单链表2.c
#include
#include
struct node{
int key;
struct node *next;
};
void creat_link(struct node *);
main()
{
struct node *head=NULL;
creat_li
www.eeworm.com/read/142572/12939154
sed djgpp.sed
s/y\.tab\./parse_tab\./
s/@DEFS@/-DMS_DOS/
s/@LIBS@//
s/@srcdir@/./
s/@YACC@/bison/
s/@CC@/gcc/
s/@RANLIB@/ranlib/
s/@ALLOCA@//
/^flex/ s/\.bootstrap//
/sed.*extern.*malloc/ c\
@mv parse_ta
www.eeworm.com/read/243363/12946093
c testoracle.c
#include "oracle.h"
main()
{
OCI_DATA *data = (OCI_DATA *)malloc(sizeof(OCI_DATA));
memset(data, 0, sizeof(OCI_DATA));
BASE_DATA *pDrc = (BASE_DATA *)malloc(sizeof(BASE_DATA));
memset(pDrc,
www.eeworm.com/read/141545/13003812
c fillheap.c
#include
#include
void main(void)
{
char *buffer1, *buffer2, *buffer3;
int i, state;
buffer1 = malloc(100);
buffer2 = malloc(200);
buffer3 = malloc(300)
www.eeworm.com/read/327073/13100563
c 单链表2.c
#include
#include
struct node{
int key;
struct node *next;
};
void creat_link(struct node *);
main()
{
struct node *head=NULL;
creat_li
www.eeworm.com/read/326893/13110545
c fillheap.c
#include
#include
void main(void)
{
char *buffer1, *buffer2, *buffer3;
int i, state;
buffer1 = malloc(100);
buffer2 = malloc(200);
buffer3 = malloc(300)
www.eeworm.com/read/139802/13130119
c 单链表2.c
#include
#include
struct node{
int key;
struct node *next;
};
void creat_link(struct node *);
main()
{
struct node *head=NULL;
creat_li
www.eeworm.com/read/240985/13181900
cpp emp5_25.cpp
// emp5_25 btre1;
#include "btreint.h"
const int n=31;
typedef int aaa[n];
aaa a;
void create1(bitre &t,int i)
{
int m;
if (i>n) t=NULL;
else{
t=(bitre)malloc(sizeof(struct bnode))
www.eeworm.com/read/240959/13184627
h ydirectenv.h
/*
* YAFFS: Yet another FFS. A NAND-flash specific file system.
* ydirectenv.h: Environment wrappers for direct.
*
* Copyright (C) 2002 Aleph One Ltd.
* for Toby Churchill Ltd and Brightstar E
www.eeworm.com/read/240662/13208154
c 6-4.c
#include /* Support all standards */
#include /* malloc support */
#include /* Memory locking functions */
#define BUFFER 2048
void ma