1
0
Fork 0
mirror of https://github.com/git/git.git synced 2024-05-30 12:36:07 +02:00

Merge branch 'rj/header-guards'

Code clean-up.

* rj/header-guards:
  headers: normalize the spelling of some header guards
This commit is contained in:
Junio C Hamano 2018-10-30 15:43:44 +09:00
commit 0a1006c571
10 changed files with 20 additions and 20 deletions

View File

@ -1,5 +1,5 @@
#ifndef __ALIAS_H__
#define __ALIAS_H__
#ifndef ALIAS_H
#define ALIAS_H
struct string_list;

View File

@ -1,5 +1,5 @@
#ifndef __COMMIT_REACH_H__
#define __COMMIT_REACH_H__
#ifndef COMMIT_REACH_H
#define COMMIT_REACH_H
#include "commit-slab.h"

View File

@ -1,5 +1,5 @@
#ifndef FETCH_NEGOTIATOR
#define FETCH_NEGOTIATOR
#ifndef FETCH_NEGOTIATOR_H
#define FETCH_NEGOTIATOR_H
struct commit;

4
midx.h
View File

@ -1,5 +1,5 @@
#ifndef __MIDX_H__
#define __MIDX_H__
#ifndef MIDX_H
#define MIDX_H
#include "repository.h"

View File

@ -1,5 +1,5 @@
#ifndef __TEST_TOOL_H__
#define __TEST_TOOL_H__
#ifndef TEST_TOOL_H
#define TEST_TOOL_H
#include "git-compat-util.h"

View File

@ -1,5 +1,5 @@
#ifndef FAST_EXPORT_H_
#define FAST_EXPORT_H_
#ifndef FAST_EXPORT_H
#define FAST_EXPORT_H
struct strbuf;
struct line_buffer;

View File

@ -1,5 +1,5 @@
#ifndef LINE_BUFFER_H_
#define LINE_BUFFER_H_
#ifndef LINE_BUFFER_H
#define LINE_BUFFER_H
#include "strbuf.h"

View File

@ -1,5 +1,5 @@
#ifndef SLIDING_WINDOW_H_
#define SLIDING_WINDOW_H_
#ifndef SLIDING_WINDOW_H
#define SLIDING_WINDOW_H
#include "strbuf.h"

View File

@ -1,5 +1,5 @@
#ifndef SVNDIFF_H_
#define SVNDIFF_H_
#ifndef SVNDIFF_H
#define SVNDIFF_H
struct line_buffer;
struct sliding_view;

View File

@ -1,5 +1,5 @@
#ifndef SVNDUMP_H_
#define SVNDUMP_H_
#ifndef SVNDUMP_H
#define SVNDUMP_H
int svndump_init(const char *filename);
int svndump_init_fd(int in_fd, int back_fd);