pack-objects: more threaded load balancing fix with often changed paths
[git/dscho.git] / wt-status.h
blob63d50f2871f51d4363afa2f7bbb21c81186b9f44
1 #ifndef STATUS_H
2 #define STATUS_H
4 #include <stdio.h>
6 enum color_wt_status {
7 WT_STATUS_HEADER,
8 WT_STATUS_UPDATED,
9 WT_STATUS_CHANGED,
10 WT_STATUS_UNTRACKED,
13 struct wt_status {
14 int is_initial;
15 char *branch;
16 const char *reference;
17 int verbose;
18 int amend;
19 int untracked;
20 /* These are computed during processing of the individual sections */
21 int commitable;
22 int workdir_dirty;
23 int workdir_untracked;
24 const char *index_file;
25 FILE *fp;
26 const char *prefix;
29 int git_status_config(const char *var, const char *value);
30 int wt_status_use_color;
31 int wt_status_relative_paths;
32 void wt_status_prepare(struct wt_status *s);
33 void wt_status_print(struct wt_status *s);
35 #endif /* STATUS_H */