MCPcopy Create free account
hub / github.com/git/git / cmd__parse_pathspec_file

Function cmd__parse_pathspec_file

t/helper/test-parse-pathspec-file.c:5–33  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

3#include "pathspec.h"
4
5int cmd__parse_pathspec_file(int argc, const char **argv)
6{
7 struct pathspec pathspec;
8 char *pathspec_from_file = NULL;
9 int pathspec_file_nul = 0, i;
10
11 static const char *const usage[] = {
12 "test-tool parse-pathspec-file --pathspec-from-file [--pathspec-file-nul]",
13 NULL
14 };
15
16 struct option options[] = {
17 OPT_PATHSPEC_FROM_FILE(&pathspec_from_file),
18 OPT_PATHSPEC_FILE_NUL(&pathspec_file_nul),
19 OPT_END()
20 };
21
22 parse_options(argc, argv, NULL, options, usage, 0);
23
24 parse_pathspec_file(&pathspec, 0, 0, NULL, pathspec_from_file,
25 pathspec_file_nul);
26
27 for (i = 0; i < pathspec.nr; i++)
28 printf("%s\n", pathspec.items[i].original);
29
30 clear_pathspec(&pathspec);
31 free(pathspec_from_file);
32 return 0;
33}

Callers

nothing calls this directly

Calls 3

parse_optionsFunction · 0.85
parse_pathspec_fileFunction · 0.85
clear_pathspecFunction · 0.85

Tested by

no test coverage detected