aboutsummaryrefslogtreecommitdiff
path: root/include/tags.h
diff options
context:
space:
mode:
authorSoikk2022-07-24 22:18:31 +0200
committerSoikk2022-07-24 22:18:31 +0200
commitff5da06da823ac3a0bc7e89b35ed573255139b2d (patch)
tree41551fe546a34ad8f771b5a75eb4d883db5fb4ac /include/tags.h
parentcaacd02d3c6a6ab3ddea620214ee5d1836de2c31 (diff)
downloadsoikk-DB-ff5da06da823ac3a0bc7e89b35ed573255139b2d.tar.xz
soikk-DB-ff5da06da823ac3a0bc7e89b35ed573255139b2d.tar.zst
Added ref count for files & tags. Refactored database.c. Removed tags.h but kept documentation.
Diffstat (limited to 'include/tags.h')
-rw-r--r--include/tags.h22
1 files changed, 0 insertions, 22 deletions
diff --git a/include/tags.h b/include/tags.h
deleted file mode 100644
index 0b7f5a9..0000000
--- a/include/tags.h
+++ /dev/null
@@ -1,22 +0,0 @@
-#ifndef TAGS_H
-#define TAGS_H
-
-/*
- tags are stored in a big table (or their hashes are) ordered
- by alphabetical order
- tags can have namespaces which are a special tag that starts
- with a ':'
- all tags in a namespace are located between two occurrences
- of the namespace within the list,
- e.g [":people", "sam hyde", "hitler", ":people"]
- maybe namespaces use another hashing function to prevent
- collisions because of the lack of space because of the ':'
-*/
-
-#define MAXTAGS 4094
-
-void insertTag(char **tags, char *tag){
- if()
-}
-
-#endif \ No newline at end of file