summaryrefslogtreecommitdiff
path: root/git.h
diff options
context:
space:
mode:
authormrb0nk500 <b0nk@b0nk.xyz>2021-06-27 11:05:28 -0400
committermrb0nk500 <b0nk@b0nk.xyz>2021-06-27 11:05:28 -0400
commit4115e25e4fe3cca13756a039dd2a96b07f8d7100 (patch)
treec92e6bd101a7d1d39a05d3ebc880bfa97260d9bf /git.h
parent03004e38a4feb7298306d7d5368e907b98a9a742 (diff)
Added externs for `add_comment()`, and
`create_pull_request_dir()` in `git.h`.
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 bce0879..351b92d 100644
--- a/git.h
+++ b/git.h
@@ -50,5 +50,7 @@ struct pull_request {
extern void cleanup_git(git_repository **repos);
extern git_repository **init_git(config *cfg);
+extern int add_comment(comment *comment, const char *pr_root);
+extern int create_pull_request_dir(pull_request *pr, int id, const char *root);
#endif