Add long format specifiers "raw" and "hash"

Add new format specifiers to print the raw item representation or an
object's hash value.

Signed-off-by: Lukas Fleischer <lfleischer@calcurse.org>
This commit is contained in:
Lukas Fleischer
2016-01-11 20:24:06 +01:00
parent ae49ef1974
commit dd85a73746
6 changed files with 114 additions and 5 deletions

View File

@@ -40,6 +40,7 @@
#include <time.h>
#include "calcurse.h"
#include "sha1.h"
llist_ts_t alist_p;
@@ -167,6 +168,16 @@ char *apoint_tostr(struct apoint *o)
return string_buf(&s);
}
char *apoint_hash(struct apoint *apt)
{
char *raw = apoint_tostr(apt);
char *sha1 = mem_malloc(SHA1_DIGESTLEN * 2 + 1);
sha1_digest(raw, sha1);
mem_free(raw);
return sha1;
}
void apoint_write(struct apoint *o, FILE * f)
{
char *str = apoint_tostr(o);