aboutsummaryrefslogtreecommitdiffstats
path: root/src/todo.c
diff options
context:
space:
mode:
authorLukas Fleischer <calcurse@cryptocrack.de>2011-07-01 14:26:43 +0200
committerLukas Fleischer <calcurse@cryptocrack.de>2011-07-02 10:15:35 +0200
commit3076670a76652d538f8b3d0d925197ec2ce32dd9 (patch)
tree80a90e859b8a7e7c41e7966c21eecefaac82266c /src/todo.c
parent29d71935afdfb18391cd2450814ba53f1739518e (diff)
downloadcalcurse-3076670a76652d538f8b3d0d925197ec2ce32dd9.tar.gz
calcurse-3076670a76652d538f8b3d0d925197ec2ce32dd9.zip
Refactor out todo item serialization
Add a todo_write() function that allows one to serialize todo items and write serialized data to an output stream in a fashion similar to apoint_write() and event_write(). Signed-off-by: Lukas Fleischer <calcurse@cryptocrack.de>
Diffstat (limited to 'src/todo.c')
-rw-r--r--src/todo.c9
1 files changed, 9 insertions, 0 deletions
diff --git a/src/todo.c b/src/todo.c
index a6b5687..935109f 100644
--- a/src/todo.c
+++ b/src/todo.c
@@ -183,6 +183,15 @@ todo_add (char *mesg, int id, char *note)
return todo;
}
+void
+todo_write (struct todo *todo, FILE *f)
+{
+ if (todo->note)
+ (void)fprintf (f, "[%d]>%s %s\n", todo->id, todo->note, todo->mesg);
+ else
+ (void)fprintf (f, "[%d] %s\n", todo->id, todo->mesg);
+}
+
/* Delete a note previously attached to a todo item. */
static void
todo_delete_note_bynum (unsigned num)