blob: 6b3049a0f544e08a210df10d3fb7cf7c6ee93892 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
|
#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);
#endif
|