代码搜索:malloc

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

代码结果 10,000
www.eeworm.com/read/224456/14589765

h stdafx.h

// stdafx.h : 标准系统包含文件的包含文件, // 或是常用但不常更改的项目特定的包含文件 // #pragma once #define WIN32_LEAN_AND_MEAN // 从 Windows 头中排除极少使用的资料 // C 运行时头文件 #include #include #include
www.eeworm.com/read/224274/14598672

h stdafx.h

// stdafx.h : 标准系统包含文件的包含文件, // 或是常用但不常更改的项目特定的包含文件 // #pragma once #define WIN32_LEAN_AND_MEAN // 从 Windows 头中排除极少使用的资料 // C 运行时头文件 #include #include #include
www.eeworm.com/read/123410/14635658

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 READ
www.eeworm.com/read/223339/14644755

cpp algo0211.cpp

void CreateList_L(LinkList &L, int n) { // 算法2.11 // 逆位序输入(随机产生)n个元素的值,建立带表头结点的单链线性表L LinkList p; int i; L = (LinkList)malloc(sizeof(LNode)); L->next = NULL; // 先建立一个带头结点
www.eeworm.com/read/223273/14648598

c t.c

#include #include #include #include #include void main(){ printf("%d\n",'\r'); // char *buf=(char*)malloc(10); ssize_t size; printf("%d\n",strle
www.eeworm.com/read/223007/14664918

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/222797/14673585

txt 递归下降语法分析器.txt

#i nclude "stdio.h" #i nclude "malloc.h" #i nclude "ctype.h" #i nclude "windows.h" #i nclude "iostream.h" FILE *fp; int num; struct Lint{ int int_x; struct Lint *next; }Lint, *L,*H,*P;
www.eeworm.com/read/222795/14673602

txt 递归下降语法分析器.txt

#i nclude "stdio.h" #i nclude "malloc.h" #i nclude "math.h" struct Lchar{ char char_ch; struct Lchar *next; }Lchar,*p,*h,*temp,*top,*base; struct Lint{ int int_t; struct Lint *next; }L
www.eeworm.com/read/122684/14675274

cpp memcheck.cpp

//: C26:MemCheck.cpp {O} // From Thinking in C++, 2nd Edition // Available at http://www.BruceEckel.com // (c) Bruce Eckel 1999 // Copyright notice in Copyright.txt // Memory allocation test
www.eeworm.com/read/221874/14716368

c read.c

#include "struct.h" /* local data types */ struct node { char *name; int x,y,w,h,n,type; struct pin *head, *tail; struct node *next; }; struct pin { char *name; int x,y; struct pin *n