summaryrefslogtreecommitdiff
path: root/CONVENTIONS
diff options
context:
space:
mode:
authorShawn O. Pearce <spearce@spearce.org>2008-11-01 15:42:23 -0700
committerShawn O. Pearce <spearce@spearce.org>2008-11-01 15:42:23 -0700
commitd1ea30c399629de48ac3fe68869a21171ad131eb (patch)
tree31438e245492d85fd6da4d1406eba0fbde8332a4 /CONVENTIONS
parent3e89665eb6d5ab75051dc59fc8b63316908b19d1 (diff)
downloadlibgit2-d1ea30c399629de48ac3fe68869a21171ad131eb.tar.gz
Move include files to include/git/, drop git_ prefix from file names
Signed-off-by: Shawn O. Pearce <spearce@spearce.org>
Diffstat (limited to 'CONVENTIONS')
-rw-r--r--CONVENTIONS10
1 files changed, 5 insertions, 5 deletions
diff --git a/CONVENTIONS b/CONVENTIONS
index ea9fa2b55..575cdc563 100644
--- a/CONVENTIONS
+++ b/CONVENTIONS
@@ -85,15 +85,15 @@ the following form, where ${filename} is the name of the file,
after replacing non-identifier characters with '_'.
----
- #ifndef INCLUDE_${filename}_h__
- #define INCLUDE_${filename}_h__
+ #ifndef INCLUDE_git_${filename}_h__
+ #define INCLUDE_git_${filename}_h__
- #include "git_common.h"
+ #include "git/common.h"
/**
- * @file ${filename}.h
+ * @file git/${filename}.h
* @brief Git some description
- * @defgroup ${filename} some description routines
+ * @defgroup git_${filename} some description routines
* @ingroup Git
* @{
*/