Add some missing includes
[blerg.git] / database / tags.h
1 /* Blerg is (C) 2011 The Dominion of Awesome, and is distributed under a
2  * BSD-style license.  Please see the COPYING file for details.
3  */
4 #ifndef _TAGS_H
5 #define _TAGS_H
6
7 #include <stdint.h>
8 #include "blergref.h"
9
10 int tag_scan(const char *, const char *, int, uint64_t);
11 int tag_add(const char *, const char *, uint64_t);
12 struct blergref * tag_list(const char *, uint64_t, int *count, int direction);
13 int tag_exists(const char *tag);
14
15 #endif //_TAGS_H