代码搜索:malloc

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

代码结果 10,000
www.eeworm.com/read/332234/12772287

c 6-4.c

#include /* Support all standards */ #include /* malloc support */ #include /* Memory locking functions */ #define BUFFER 2048 void ma
www.eeworm.com/read/144708/12775533

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/332124/12777331

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/245187/12811965

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/244397/12868444

c jmemnobs.c

/* * jmemnobs.c * * Copyright (C) 1992-1996, Thomas G. Lane. * This file is part of the Independent JPEG Group's software. * For conditions of distribution and use, see the accompanying README fi
www.eeworm.com/read/143389/12879034

makefile

L_TARGET := lib.a L_OBJS := abs.o ctype.o checksum.o debug.o \ string.o atol.o vsprintf.o printf.o malloc.o include $(TOPDIR)/Rules.make
www.eeworm.com/read/330425/12892196

c encoder.c

/* **************************************************************************** * * MX21 encoder program * * HISTORY * * 31-Aug-04 Aaron Created * ********************************************
www.eeworm.com/read/142909/12908584

h stdlib.h

/* stdlib.h */ #ifndef _STDLIB_H #define _STDLIB_H #define NULL ((void *)0) /* stdarg.h */ /* il n'y a pas de type long */ #define long int typedef int size_t; void *malloc(int);
www.eeworm.com/read/243633/12930726

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/243560/12934062

c 单链表2.c

#include #include struct node{ int key; struct node *next; }; void creat_link(struct node *); main() { struct node *head=NULL; creat_li