From 338d3e054b0305817e84ac61b8db6fd1d9dee09b Mon Sep 17 00:00:00 2001 From: dam Date: Tue, 23 Aug 2022 16:41:55 +0000 Subject: Updated to do list. --- main.c | 2 +- readme.md | 1 + 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/main.c b/main.c index 878e42c..531212f 100644 --- a/main.c +++ b/main.c @@ -65,7 +65,7 @@ size_t truncate_string_utf8(uint8_t* string, size_t length) { string[idx] = '\0'; #if DEBUG - // TODO Check if there is a null byte before the place where we terminated the string. + // Check if there is a null byte before the place where we terminated the string. size_t idx_dbd = idx - 1; while(idx_dbd >= 0) { assert(string[idx_dbd] != '\0' && "Found unexpected null byte. The user is at fault."); diff --git a/readme.md b/readme.md index d008702..210b5e7 100644 --- a/readme.md +++ b/readme.md @@ -9,6 +9,7 @@ Task Time Tracker # to-do list - [ ] Include check on number of char bits; +- [ ] Decide once for all if I'll be using uint8_t or char for strings. - [x] maybe rename to task-time-tracker? - [ ] Remove hash stuff; - [ ] Tasks should have a `modified_on` timestamp field; -- cgit v1.2.3