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

📄 node.h

📁 1.linux平台上单链表接口 2.代码的封装性和层次性好 3.接口功能全
💻 H
字号:
/*
 *	Copyright (c) 2007, beijing
 *	All right reserved.
 *	list.c
 *	author:	chengliang
 *	date:	May, 26, 07
 */

#ifndef _NODE_H
#define _NODE_H

#include "stdio.h"
#include "assert.h"
#include "string.h"

#define TRUE	1
#define FALSE	0

struct NODE_DATA_TYPE{
	char msg[16];
};

typedef struct NODE_DATA_TYPE items;

void node_data_init(items * );
void node_data_free(items * );

void node_data_copy(items * , items * );
int node_data_comp(items * , items * );

void node_data_display(items * );

#endif

⌨️ 快捷键说明

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