#ifndef __LYNQ_LINK_NAME_H__ | |
#define __LYNQ_LINK_NAME_H__ | |
struct NodeName | |
{ | |
char *name; | |
struct NodeName* next; | |
}; | |
void AddListTillByName(char *name); | |
void ScanListByName(); | |
struct NodeName* FindNodeByName(char *name); | |
void FreeListByName(); | |
void DeleteListTailByName(); | |
void DeleteListHeadByName(); | |
void DeleteListRand(char *name); | |
#endif |