summaryrefslogtreecommitdiff
path: root/wt-status.h
blob: 892a86c76abe69ce69327a10a5d491cc47f8e82b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
#ifndef STATUS_H
#define STATUS_H
 
enum color_wt_status {
	WT_STATUS_HEADER,
	WT_STATUS_UPDATED,
	WT_STATUS_CHANGED,
	WT_STATUS_UNTRACKED,
};
 
struct wt_status {
	int is_initial;
	char *branch;
	const char *reference;
	int commitable;
	int verbose;
	int amend;
	int untracked;
	int workdir_clean;
};
 
int git_status_config(const char *var, const char *value);
void wt_status_prepare(struct wt_status *s);
void wt_status_print(struct wt_status *s);
 
#endif /* STATUS_H */