summaryrefslogtreecommitdiff
path: root/include/git2/sys
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 /include/git2/sys
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 'include/git2/sys')
-rw-r--r--include/git2/sys/path.h37
1 files changed, 0 insertions, 37 deletions
diff --git a/include/git2/sys/path.h b/include/git2/sys/path.h
deleted file mode 100644
index 30b2087f0..000000000
--- a/include/git2/sys/path.h
+++ /dev/null
@@ -1,37 +0,0 @@
-/*
- * Copyright (C) the libgit2 contributors. All rights reserved.
- *
- * This file is part of libgit2, distributed under the GNU GPL v2 with
- * a Linking Exception. For full terms see the included COPYING file.
- */
-#ifndef INCLUDE_sys_git_path_h__
-#define INCLUDE_sys_git_path_h__
-
-#include "git2/common.h"
-#include "git2/types.h"
-
-GIT_BEGIN_DECL
-
-/**
- * Check whether a path component corresponds to a .gitmodules file
- *
- * @param name the path component to check
- */
-GIT_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
- */
-GIT_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
- */
-GIT_EXTERN(int) git_path_is_dotgit_attributes(const char *name);
-
-GIT_END_DECL
-#endif