summaryrefslogtreecommitdiff
path: root/wt-status.c
diff options
context:
space:
mode:
authorJohannes Schindelin <johannes.schindelin@gmx.de>2016-10-07 16:08:56 (GMT)
committerJunio C Hamano <gitster@pobox.com>2016-10-07 16:29:31 (GMT)
commit41a5dd6d8622a67216978131e394148c7fa58b19 (patch)
treeb106e38ff34d9d69a996b13cb0a986ebb332017c /wt-status.c
parentfd84986f467b2556e0675d1df00f83b3a323cf2e (diff)
downloadgit-41a5dd6d8622a67216978131e394148c7fa58b19.zip
git-41a5dd6d8622a67216978131e394148c7fa58b19.tar.gz
git-41a5dd6d8622a67216978131e394148c7fa58b19.tar.bz2
wt-status: export also the has_un{staged,committed}_changes() functions
They will be used in the upcoming rebase helper. Signed-off-by: Johannes Schindelin <johannes.schindelin@gmx.de> Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 'wt-status.c')
-rw-r--r--wt-status.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/wt-status.c b/wt-status.c
index 4f9b513..6ad8fb6 100644
--- a/wt-status.c
+++ b/wt-status.c
@@ -2214,7 +2214,7 @@ void wt_status_print(struct wt_status *s)
/**
* Returns 1 if there are unstaged changes, 0 otherwise.
*/
-static int has_unstaged_changes(void)
+int has_unstaged_changes(void)
{
struct rev_info rev_info;
int result;
@@ -2230,7 +2230,7 @@ static int has_unstaged_changes(void)
/**
* Returns 1 if there are uncommitted changes, 0 otherwise.
*/
-static int has_uncommitted_changes(void)
+int has_uncommitted_changes(void)
{
struct rev_info rev_info;
int result;