Welcome to mirror list, hosted at ThFree Co, Russian Federation.

diagnose.h - git.kernel.org/pub/scm/git/git.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 998775857a08f91c5d26351fb9d9090e17659d0f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#ifndef DIAGNOSE_H
#define DIAGNOSE_H

#include "strbuf.h"

enum diagnose_mode {
	DIAGNOSE_NONE,
	DIAGNOSE_STATS,
	DIAGNOSE_ALL
};

int create_diagnostics_archive(struct strbuf *zip_path, enum diagnose_mode mode);

#endif /* DIAGNOSE_H */