summaryrefslogtreecommitdiff
path: root/wt-status.h
blob: 0a5a5b7ba9fc1d50c7dcab8220a4fb77ffecddb4 (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
#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 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 */