⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 linker.h

📁 文件fat系统的实现在内存中的一种模拟方式
💻 H
字号:
#ifndef _LINKER_H_
#define _LINKER_H_

//定义返回值
#define	SUCCESS			1
#define DELETE_FAIL		0xE0
#define ALLOC_FAIL		0xE1

typedef struct tagNode{
int		iValue;
tagNode	*pNext;
}NODE,*PNODE;


int initList(PNODE* pListHead);	//创建一个头节点,iValue = 0

int insert(PNODE pListHead,int iValue);	//插入一个值为iValue的节点至链表尾

int deleteList(PNODE pListHead);	//删除一个指定头指针的链表空间

void printList(PNODE pListHead);	//打印整个链表

#endif

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -