headers: normalize the spelling of some header guards

Signed-off-by: Ramsay Jones <ramsay@ramsayjones.plus.com> Signed-off-by: Junio C Hamano <gitster@pobox.com>

Ramsay Jones committed Oct 17, 2018 at 23:13 UTC 0009d3501b87bd02f6c6faba93cf991d701fa5a5
10 files changed +20 -20
alias.h
+2 -2
@@ -1,5 +1,5 @@
1 -#ifndef __ALIAS_H__
2 -#define __ALIAS_H__
1 +#ifndef ALIAS_H
2 +#define ALIAS_H
3
4 struct string_list;
5
commit-reach.h
+2 -2
@@ -1,5 +1,5 @@
1 -#ifndef __COMMIT_REACH_H__
2 -#define __COMMIT_REACH_H__
1 +#ifndef COMMIT_REACH_H
2 +#define COMMIT_REACH_H
3
4 #include "commit-slab.h"
5
fetch-negotiator.h
+2 -2
@@ -1,5 +1,5 @@
1 -#ifndef FETCH_NEGOTIATOR
2 -#define FETCH_NEGOTIATOR
1 +#ifndef FETCH_NEGOTIATOR_H
2 +#define FETCH_NEGOTIATOR_H
3
4 struct commit;
5
midx.h
+2 -2
@@ -1,5 +1,5 @@
1 -#ifndef __MIDX_H__
2 -#define __MIDX_H__
1 +#ifndef MIDX_H
2 +#define MIDX_H
3
4 #include "repository.h"
5
t/helper/test-tool.h
+2 -2
@@ -1,5 +1,5 @@
1 -#ifndef __TEST_TOOL_H__
2 -#define __TEST_TOOL_H__
1 +#ifndef TEST_TOOL_H
2 +#define TEST_TOOL_H
3
4 #include "git-compat-util.h"
5
vcs-svn/fast_export.h
+2 -2
@@ -1,5 +1,5 @@
1 -#ifndef FAST_EXPORT_H_
2 -#define FAST_EXPORT_H_
1 +#ifndef FAST_EXPORT_H
2 +#define FAST_EXPORT_H
3
4 struct strbuf;
5 struct line_buffer;
vcs-svn/line_buffer.h
+2 -2
@@ -1,5 +1,5 @@
1 -#ifndef LINE_BUFFER_H_
2 -#define LINE_BUFFER_H_
1 +#ifndef LINE_BUFFER_H
2 +#define LINE_BUFFER_H
3
4 #include "strbuf.h"
5
vcs-svn/sliding_window.h
+2 -2
@@ -1,5 +1,5 @@
1 -#ifndef SLIDING_WINDOW_H_
2 -#define SLIDING_WINDOW_H_
1 +#ifndef SLIDING_WINDOW_H
2 +#define SLIDING_WINDOW_H
3
4 #include "strbuf.h"
5
vcs-svn/svndiff.h
+2 -2
@@ -1,5 +1,5 @@
1 -#ifndef SVNDIFF_H_
2 -#define SVNDIFF_H_
1 +#ifndef SVNDIFF_H
2 +#define SVNDIFF_H
3
4 struct line_buffer;
5 struct sliding_view;
vcs-svn/svndump.h
+2 -2
@@ -1,5 +1,5 @@
1 -#ifndef SVNDUMP_H_
2 -#define SVNDUMP_H_
1 +#ifndef SVNDUMP_H
2 +#define SVNDUMP_H
3
4 int svndump_init(const char *filename);
5 int svndump_init_fd(int in_fd, int back_fd);