blob: 7c9740c6468b3674dfb1d2fba8d8087c51f1bdc8 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
#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
|