21 lines
374 B
C
21 lines
374 B
C
|
#ifndef TAG_TRACKER_H
|
||
|
#define TAG_TRACKER_H
|
||
|
|
||
|
#include "tag.h"
|
||
|
|
||
|
char * getTagItemString(int type, char * string);
|
||
|
|
||
|
void removeTagItemString(int type, char * string);
|
||
|
|
||
|
int getNumberOfTagItems(int type);
|
||
|
|
||
|
void printMemorySavedByTagTracker();
|
||
|
|
||
|
void sortTagTrackerInfo();
|
||
|
|
||
|
void resetVisitedFlagsInTagTracker(int type);
|
||
|
|
||
|
int wasVisitedInTagTracker(int type, char * str);
|
||
|
|
||
|
#endif
|