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

test-tool-utils.h « helper « t - git.kernel.org/pub/scm/git/git.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 6a0e5e0074fefa98d732947ea86eab4335d07d96 (plain)
1
2
3
4
5
6
7
8
9
#ifndef TEST_TOOL_UTILS_H
#define TEST_TOOL_UTILS_H

struct test_cmd {
	const char *name;
	int (*fn)(int argc, const char **argv);
};

#endif