mirror of
https://github.com/git/git
synced 2024-10-31 01:43:41 +00:00
10 lines
142 B
C
10 lines
142 B
C
|
#ifndef TEST_TOOL_UTILS_H
|
||
|
#define TEST_TOOL_UTILS_H
|
||
|
|
||
|
struct test_cmd {
|
||
|
const char *name;
|
||
|
int (*fn)(int argc, const char **argv);
|
||
|
};
|
||
|
|
||
|
#endif
|