header.h
来自「模拟内存分配的c语言实现 六、 实验目的 了解用户程序分配内存以及回收所用内」· C头文件 代码 · 共 16 行
H
16 行
#define NULL 0
#include <stdio.h>
#include <conio.h>
#include <stdlib.h>
typedef struct block
{
char name[20];
int startaddress;
int endaddress;
int length;
struct block *next;
}BLOCK;
BLOCK *FreeBL,*AllocateBL;
int start,end,size;
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?