diff options
Diffstat (limited to 'storage.h')
| -rw-r--r-- | storage.h | 5 |
1 files changed, 5 insertions, 0 deletions
@@ -10,9 +10,12 @@ typedef struct{ char path[MAXPATH]; char tags[MAXTAGS]; + int numTags; } row; +row *newRow(const char *path); + void split(const char *src, char sep, char ***arr, int *len); void swapWords(char ***arr, int a, int b); @@ -21,4 +24,6 @@ char *normalizeTag(char *tag); void insertTag(row *r, char *tag); +void removeTag(row *r, char *tag); + #endif
\ No newline at end of file |
