From 58b8e22e94ce2a2ce108160ea15ad8264bd54f1d Mon Sep 17 00:00:00 2001 From: mrb0nk500 Date: Sun, 27 Jun 2021 10:32:33 -0400 Subject: Added the `id`, and `reply` members to `comment`. --- git.h | 2 ++ 1 file changed, 2 insertions(+) diff --git a/git.h b/git.h index 252099c..bce0879 100644 --- a/git.h +++ b/git.h @@ -25,6 +25,8 @@ struct comment { char *author; /* Author of comment. */ char *desc; /* Description/Contents of comment. */ time_t date; /* Date of creation. */ + int id; /* Comment ID. */ + comment *reply; /* Comment that is being replied to. */ }; struct git_branch { -- cgit v1.2.3-13-gbd6f