From b85aada87c8546ca1bb3c08fb02aa28dbb6c1ced Mon Sep 17 00:00:00 2001 From: Luna Date: Tue, 30 Apr 2019 02:23:18 -0300 Subject: [PATCH] add lust and orgasm topics --- README.md | 8 +++++--- src/journal/main.c | 4 ++-- 2 files changed, 7 insertions(+), 5 deletions(-) diff --git a/README.md b/README.md index 56c90d6..6539da3 100644 --- a/README.md +++ b/README.md @@ -2,11 +2,13 @@ journal-like util for me -## building +all times are in utc - - a robot girl +## depedencies + + - a robot girl to use those utils - posix compliant make - - gcc/any cc + - a c compiler ``` make diff --git a/src/journal/main.c b/src/journal/main.c index d5ad915..cbd0d01 100644 --- a/src/journal/main.c +++ b/src/journal/main.c @@ -56,13 +56,13 @@ int main(int argc, char** argv) char *topic = argv[1]; const char* topics[TOPICS] = { - "emotion" + "emotion", "lust", "orgasm" }; // default handling by journal_write_topic is marked // as the NULL values in this array. void (*handlers[])(FILE*, char*) = { - NULL, + NULL, NULL, NULL }; // list all topics when arg1 is list