summaryrefslogtreecommitdiff
path: root/snac.h
diff options
context:
space:
mode:
authorGravatar default2023-05-24 13:05:43 +0200
committerGravatar default2023-05-24 13:05:43 +0200
commit5d8e370ec39d8345c95f6f2a5d8b6865b429b8fa (patch)
treefd547eed6164d7e0a028ca1ecb3741d83df96cb8 /snac.h
parentPolls can now be voted. (diff)
downloadsnac2-5d8e370ec39d8345c95f6f2a5d8b6865b429b8fa.tar.gz
snac2-5d8e370ec39d8345c95f6f2a5d8b6865b429b8fa.tar.xz
snac2-5d8e370ec39d8345c95f6f2a5d8b6865b429b8fa.zip
More prototype tunnings.
Diffstat (limited to 'snac.h')
-rw-r--r--snac.h10
1 files changed, 5 insertions, 5 deletions
diff --git a/snac.h b/snac.h
index d83eddb..66ef0d3 100644
--- a/snac.h
+++ b/snac.h
@@ -69,8 +69,8 @@ int index_add(const char *fn, const char *md5);
69int index_gc(const char *fn); 69int index_gc(const char *fn);
70int index_first(const char *fn, char *buf, int size); 70int index_first(const char *fn, char *buf, int size);
71int index_len(const char *fn); 71int index_len(const char *fn);
72d_char *index_list(const char *fn, int max); 72xs_list *index_list(const char *fn, int max);
73d_char *index_list_desc(const char *fn, int skip, int show); 73xs_list *index_list_desc(const char *fn, int skip, int show);
74 74
75int object_add(const char *id, d_char *obj); 75int object_add(const char *id, d_char *obj);
76int object_add_ow(const char *id, d_char *obj); 76int object_add_ow(const char *id, d_char *obj);
@@ -88,9 +88,9 @@ int object_unadmire(const char *id, const char *actor, int like);
88int object_likes_len(const char *id); 88int object_likes_len(const char *id);
89int object_announces_len(const char *id); 89int object_announces_len(const char *id);
90 90
91d_char *object_children(const char *id); 91xs_list *object_children(const char *id);
92d_char *object_likes(const char *id); 92xs_list *object_likes(const char *id);
93d_char *object_announces(const char *id); 93xs_list *object_announces(const char *id);
94int object_parent(const char *id, char *buf, int size); 94int object_parent(const char *id, char *buf, int size);
95 95
96int object_user_cache_add(snac *snac, const char *id, const char *cachedir); 96int object_user_cache_add(snac *snac, const char *id, const char *cachedir);