git@vger.kernel.org mailing list mirror (one of many)
 help / color / mirror / code / Atom feed
blob a765c57e9668066209d070ef6d139d1adf2dddfd 1130 bytes (raw)
name: reftable/compat.h 	 # note: path name is non-authoritative(*)

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
 
/*
Copyright 2020 Google LLC

Use of this source code is governed by a BSD-style
license that can be found in the LICENSE file or at
https://developers.google.com/open-source/licenses/bsd
*/

#ifndef COMPAT_H
#define COMPAT_H

#include "system.h"

#ifdef REFTABLE_STANDALONE

/* functions that git-core provides, for standalone compilation */
#include <stdint.h>

uint64_t get_be64(void *in);
void put_be64(void *out, uint64_t i);

void put_be32(void *out, uint32_t i);
uint32_t get_be32(uint8_t *in);

uint16_t get_be16(uint8_t *in);

#define ARRAY_SIZE(a) sizeof((a)) / sizeof((a)[0])
#define FREE_AND_NULL(x)          \
	do {                      \
		reftable_free(x); \
		(x) = NULL;       \
	} while (0)
#define QSORT(arr, n, cmp) qsort(arr, n, sizeof(arr[0]), cmp)
#define SWAP(a, b)                              \
	{                                       \
		char tmp[sizeof(a)];            \
		assert(sizeof(a) == sizeof(b)); \
		memcpy(&tmp[0], &a, sizeof(a)); \
		memcpy(&a, &b, sizeof(a));      \
		memcpy(&b, &tmp[0], sizeof(a)); \
	}

char *xstrdup(const char *s);

void sleep_millisec(int millisecs);

#endif
#endif

debug log:

solving a765c57e96 ...
found a765c57e96 in https://public-inbox.org/git/987d1d186fd68d604268f9a66118b7f276094daf.1606419752.git.gitgitgadget@gmail.com/ ||
	https://public-inbox.org/git/570a8c4bcac54295865ee0fc4514073b59725511.1600283416.git.gitgitgadget@gmail.com/ ||
	https://public-inbox.org/git/4190da597e65bce072fa3c37c9410a56def4b489.1601568663.git.gitgitgadget@gmail.com/ ||
	https://public-inbox.org/git/3c84f43cfa07708759b386f63dc4893ac45d0850.1592862921.git.gitgitgadget@gmail.com/ ||
	https://public-inbox.org/git/169f6c7f543f1d3e5c91a0b38961c765d6900107.1593457018.git.gitgitgadget@gmail.com/ ||
	https://public-inbox.org/git/12d98125c2bacdaab797cbaca47bdbfe000c293f.1596209238.git.gitgitgadget@gmail.com/

applying [1/1] https://public-inbox.org/git/987d1d186fd68d604268f9a66118b7f276094daf.1606419752.git.gitgitgadget@gmail.com/
diff --git a/reftable/compat.h b/reftable/compat.h
new file mode 100644
index 0000000000..a765c57e96

Checking patch reftable/compat.h...
Applied patch reftable/compat.h cleanly.

skipping https://public-inbox.org/git/570a8c4bcac54295865ee0fc4514073b59725511.1600283416.git.gitgitgadget@gmail.com/ for a765c57e96
skipping https://public-inbox.org/git/4190da597e65bce072fa3c37c9410a56def4b489.1601568663.git.gitgitgadget@gmail.com/ for a765c57e96
skipping https://public-inbox.org/git/3c84f43cfa07708759b386f63dc4893ac45d0850.1592862921.git.gitgitgadget@gmail.com/ for a765c57e96
skipping https://public-inbox.org/git/169f6c7f543f1d3e5c91a0b38961c765d6900107.1593457018.git.gitgitgadget@gmail.com/ for a765c57e96
skipping https://public-inbox.org/git/12d98125c2bacdaab797cbaca47bdbfe000c293f.1596209238.git.gitgitgadget@gmail.com/ for a765c57e96
index at:
100644 a765c57e9668066209d070ef6d139d1adf2dddfd	reftable/compat.h

(*) Git path names are given by the tree(s) the blob belongs to.
    Blobs themselves have no identifier aside from the hash of its contents.^

Code repositories for project(s) associated with this public inbox

	https://80x24.org/mirrors/git.git

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).