From ff2688e3957c346d4ab9d97be7cabdb74c0d0c25 Mon Sep 17 00:00:00 2001 From: dam Date: Sun, 13 Nov 2022 02:48:56 +0000 Subject: Added time edit parsing rules to the help text. --- readme.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'readme.md') diff --git a/readme.md b/readme.md index b5b955c..7982a0d 100644 --- a/readme.md +++ b/readme.md @@ -62,7 +62,7 @@ Task Time Tracker - [ ] Compress code: - [x] Re-do sprint_time5_utf8: -12 delta LOC; - [x] Re-do truncate_string_utf8: 0 delta LOC; - - [ ] Implement `read_input_to_string_buffer`: -24 delta LOC; + - [x] Implement `read_input_to_string_buffer`: -24 delta LOC; - [ ] wrap malloc (and maybe others) in a function with error checking ```c static inline void *MallocOrDie(size_t MemSize) { void *AllocMem = malloc(MemSize); /* Some implementations return null on a 0 length alloc, * we may as well allow this as it increases compatibility * with very few side effects */ if(!AllocMem && MemSize) { printf("Could not allocate memory!"); exit(-1); } return AllocMem; } -- cgit v1.2.3