StoneAge/gmsv/include/link.h
2018-08-07 00:51:35 -07:00

23 lines
576 B
C
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

#ifndef __LINK_H__
#define __LINK_H__
#include "common.h"
/*
* 伉旦玄厌瞻毛烂聒允月
* 仇及伉旦玄反val反 读卞反窒手仄卅中[勾引曰禾奶件正□及戊疋□及心
* 垫丹[
*/
typedef struct tagNode
{
struct tagNode* next; /*戚及用□玉尺及禾奶件正□*/
char* val; /*忡 允月 侬 */
int size; /*val及扔奶术*/
}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