summaryrefslogtreecommitdiff
path: root/pathspec.h
diff options
context:
space:
mode:
authorAdam Spiers <git@adamspiers.org>2013-01-06 16:58:08 (GMT)
committerJunio C Hamano <gitster@pobox.com>2013-01-06 22:26:37 (GMT)
commit6f525e7100061fb0dbc2d9230cc9948c7c5b2978 (patch)
treef6f7f07a8d9353c01aa7fa59ea2c7235c63ff800 /pathspec.h
parentf8a1113b47ab6ab329116325a0a78c68efc22485 (diff)
downloadgit-6f525e7100061fb0dbc2d9230cc9948c7c5b2978.zip
git-6f525e7100061fb0dbc2d9230cc9948c7c5b2978.tar.gz
git-6f525e7100061fb0dbc2d9230cc9948c7c5b2978.tar.bz2
add.c: move pathspec matchers into new pathspec.c for reuse
Extract the following functions from builtin/add.c to pathspec.c, in preparation for reuse by a new git check-ignore command: - fill_pathspec_matches() - find_used_pathspec() The functions being extracted are not changed in any way, except removal of the 'static' qualifier. Also add comments documenting these newly public functions, including clarifications that they operate on the index. Signed-off-by: Adam Spiers <git@adamspiers.org> Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 'pathspec.h')
-rw-r--r--pathspec.h7
1 files changed, 7 insertions, 0 deletions
diff --git a/pathspec.h b/pathspec.h
new file mode 100644
index 0000000..1cb1909
--- /dev/null
+++ b/pathspec.h
@@ -0,0 +1,7 @@
+#ifndef PATHSPEC_H
+#define PATHSPEC_H
+
+extern char *find_used_pathspec(const char **pathspec);
+extern void fill_pathspec_matches(const char **pathspec, char *seen, int specs);
+
+#endif /* PATHSPEC_H */