【C语言】标准头文件结构

  • 运用条件编译和宏,保证这个文件在一个编译单元中只会被#include一次
#ifndef __LIST_HEAD__
#define __LIST_HEAD__

#include "node.h"
typedef struct _list {
	Node* head;
	Node* tail
} List;

#endif

你可能感兴趣的:(C语言,c语言,开发语言)