代码搜索:alloc
找到约 10,000 项符合「alloc」的源代码
代码结果 10,000
www.eeworm.com/read/426030/10292735
c tuixiangzi.c
#include
#include
#include
#include
#include
#include
typedef struct winer
{
int x,y;
struct winer *p;
}winer;
www.eeworm.com/read/162028/10344031
c testm.c
/*
* Test some tricks we play with special IEEE floating point values
*/
#include
#include
#include "alloc.h"
#include "error.h"
#ifdef ultrix
#define isinf(x) (!finite(x))
#en
www.eeworm.com/read/277263/10650238
h lu62.h
#ifndef _LU62_H
#define _LU62_H
/**************************/
/* defined function code */
/**************************/
#define LU_ALLOC 0x01
#define LU_ACCEPT 0x02
#define LU_REQUEST_TO_SEND
www.eeworm.com/read/276643/10720976
c 98.c
#include
#include
#include
#include
#include
void main()
{
void * ptr;
int gd=DETECT,gm;
float i;
registerbgidriver(EGAVGA_driver);
www.eeworm.com/read/350410/10744076
c bkpic.c
//...::: Include :::...
#include
#include
#include
#include
#include
#include
#include
#include //windo
www.eeworm.com/read/199841/7097754
c listfonts.c
#include "nxlib.h"
#include
#include
struct _list {
char **list;
int alloc;
int used;
struct _list *next;
};
static struct _list *g_fontlist = 0;
static struct _list *
_cr
www.eeworm.com/read/462736/7196949
c ch5_4.c
#include
#include
#define M 20
typedef struct node
{ char data;
struct node *lchild,*rchild;
}JD;
void inorder(JD *bt)
{ int i=0;
JD *p,*s[M];
p=bt;
www.eeworm.com/read/454932/7381678
txt 二叉树层次遍历算法.txt
//二叉树层次遍历算法
#include
#include
#define MaxSize 1000
typedef char ElemType;
typedef struct node
{
ElemType data;
struct node *lchild;
struct node *rchild;
} B
www.eeworm.com/read/450722/7477561
c improved2.c
/* Further improved bare-bones 1D FDTD simulation. */
#include "fdtd2.h"
#include "ezincarg.h"
int main()
{
Grid *g;
ALLOC_1D(g,1,Grid); // allocate memory for Grid
www.eeworm.com/read/448678/7527209
h hash.h
#ifndef VSFTP_HASH_H
#define VSFTP_HASH_H
struct hash;
typedef unsigned int (*hashfunc_t)(unsigned int, void*);
struct hash* hash_alloc(unsigned int buckets, unsigned int key_size,