summaryrefslogtreecommitdiff
path: root/src/path.h
diff options
context:
space:
mode:
authorCarlos Martín Nieto <carlosmn@github.com>2018-05-18 15:16:53 +0200
committerCarlos Martín Nieto <carlosmn@github.com>2018-05-18 15:16:53 +0200
commit177dcfc702bd268a02db1d75c20e70cd3529a3b2 (patch)
tree885dbbf27e698b4efc27e1a25bf42b398eef0534 /src/path.h
parent0aa65f8dbf270d8517703a9a8f63afaf18e0e739 (diff)
downloadlibgit2-177dcfc702bd268a02db1d75c20e70cd3529a3b2.tar.gz
path: hide the dotgit file functions
These can't go into the public API yet as we don't want to introduce API or ABI changes in a security release.
Diffstat (limited to 'src/path.h')
-rw-r--r--src/path.h21
1 files changed, 21 insertions, 0 deletions
diff --git a/src/path.h b/src/path.h
index aa24bcd2f..b0c3975ad 100644
--- a/src/path.h
+++ b/src/path.h
@@ -644,4 +644,25 @@ extern bool git_path_isvalid(
*/
int git_path_normalize_slashes(git_buf *out, const char *path);
+/**
+ * Check whether a path component corresponds to a .gitmodules file
+ *
+ * @param name the path component to check
+ */
+extern int git_path_is_dotgit_modules(const char *name);
+
+/**
+ * Check whether a path component corresponds to a .gitignore file
+ *
+ * @param name the path component to check
+ */
+extern int git_path_is_dotgit_ignore(const char *name);
+
+/**
+ * Check whether a path component corresponds to a .gitignore file
+ *
+ * @param name the path component to check
+ */
+extern int git_path_is_dotgit_attributes(const char *name);
+
#endif