summaryrefslogtreecommitdiff
path: root/git.h
diff options
context:
space:
mode:
authormrb0nk500 <b0nk@b0nk.xyz>2021-06-27 10:32:33 -0400
committermrb0nk500 <b0nk@b0nk.xyz>2021-06-27 10:32:33 -0400
commit58b8e22e94ce2a2ce108160ea15ad8264bd54f1d (patch)
treefeff2d6d696d0c892265f39a1b34ae31cdb002e9 /git.h
parenta1cc307285cb3eff7dfe4b7eadf88247a3d3477e (diff)
Added the `id`, and `reply` members to `comment`.
Diffstat (limited to 'git.h')
-rw-r--r--git.h2
1 files changed, 2 insertions, 0 deletions
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 {