ip51_cs_defs.h
来自「基于51的动态内存管理」· C头文件 代码 · 共 46 行
H
46 行
/*************************************************************************/
/* */
/* DESCRIPTION */
/* */
/* This file contains data structure definitions used in the common */
/* service linked list routines. */
/* */
/* DATA STRUCTURES */
/* */
/* CS_NODE Link node structure */
/* */
/* FUNCTIONS */
/* */
/* None */
/* */
/* DEPENDENCIES */
/* */
/* */
/* HISTORY */
/* */
/* DATE REMARKS */
/* */
/* 02-09-2004 Created initial version 1.0 */
/*************************************************************************/
/* Check to see if the file has been included already. */
#ifndef CS_DEFS
#define CS_DEFS
/* Define a common node data structure that can be included inside of
other system data structures. */
typedef struct CS_NODE_STRUCT
{
struct CS_NODE_STRUCT *cs_previous;
struct CS_NODE_STRUCT *cs_next;
unsigned char cs_priority;
} CS_NODE;
#endif /* CS_DEFS */
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?