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

@@ -39,6 +39,7 @@
#include <unistd.h>
#include "calcurse.h"
#include "sha1.h"
llist_t todolist;
@@ -91,6 +92,16 @@ char *todo_tostr(struct todo *todo)
return res;
}
char *todo_hash(struct todo *todo)
{
char *raw = todo_tostr(todo);
char *sha1 = mem_malloc(SHA1_DIGESTLEN * 2 + 1);
sha1_digest(raw, sha1);
mem_free(raw);
return sha1;
}
void todo_write(struct todo *todo, FILE * f)
{
char *str = todo_tostr(todo);