chuyiwen_gmsv/include/link.h

23 lines
640 B
C
Raw Normal View History

2016-12-24 08:45:52 +08:00
#ifndef __LINK_H__
#define __LINK_H__
#include "common.h"
/*
2017-01-13 23:37:03 +08:00
*
* val反
*
2016-12-24 08:45:52 +08:00
*/
typedef struct tagNode
{
2017-01-13 23:37:03 +08:00
struct tagNode* next; /*戚及用□玉尺及禾奶件正□*/
char* val; /*忡 允月 侬 */
int size; /*val及扔奶术*/
2016-12-24 08:45:52 +08:00
}Node;
BOOL Nodeappendhead( Node** top , Node* add );
BOOL Nodeappendtail( Node** top , Node* add );
BOOL Noderemovehead( Node** top , Node* ret);
BOOL Noderemovetail( Node** top , Node* ret);
#endif