https://github.com/git/git
Raw File
Tip revision: 1965efb1599f59b8e3380335d1fa395e2008a30b authored by Junio C Hamano on 01 October 2006, 10:08:55 UTC
GIT 1.4.3-rc1
Tip revision: 1965efb
wt-status.h
#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 */
back to top