diff options
| author | dam <dam@gudinoff> | 2022-08-24 01:09:46 +0000 |
|---|---|---|
| committer | dam <dam@gudinoff> | 2022-08-24 01:09:46 +0000 |
| commit | 75079ac9713a9937d489adbdc300d66a1290d177 (patch) | |
| tree | 2511cd2cb494b1734c939f2b83d32d0e7008e9e0 /main.c | |
| parent | 3424cbe5dfa45342305e3c9b97efa6deeb48a0ab (diff) | |
| download | task-time-tracker-75079ac9713a9937d489adbdc300d66a1290d177.tar.zst task-time-tracker-75079ac9713a9937d489adbdc300d66a1290d177.zip | |
Add modified_on field to task_t.
Diffstat (limited to 'main.c')
| -rw-r--r-- | main.c | 1 |
1 files changed, 1 insertions, 0 deletions
@@ -29,6 +29,7 @@ typedef struct { char name[MAX_TASK_NAME+1]; // Allow space for null termination char. uint32_t time[7]; + uint64_t modified_on; uint8_t state; } task_t; |
