📄 node.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 + -