diff options
author | default <nobody@localhost> | 2023-08-19 09:31:13 +0200 |
---|---|---|
committer | default <nobody@localhost> | 2023-08-19 09:31:13 +0200 |
commit | 5de1a9ce0cbdda0ded72a51660130327636eb699 (patch) | |
tree | 59265f2e9dc5fb8abb43e45a8a23ef3f5dfeaa4e /snac.h | |
parent | 46cfc37f2bfe03baa4d6feadf7155483c8797459 (diff) |
Rewritten history_get() prototype to match static_get().
Diffstat (limited to 'snac.h')
-rw-r--r-- | snac.h | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -150,7 +150,8 @@ xs_str *static_get_meta(snac *snac, const char *id); double history_mtime(snac *snac, const char *id); void history_add(snac *snac, const char *id, const char *content, int size); -xs_str *history_get(snac *snac, const char *id); +int history_get(snac *snac, const char *id, xs_str **content, int *size, + const char *inm, xs_str **etag); int history_del(snac *snac, const char *id); xs_list *history_list(snac *snac); |