We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8f81760 commit bd4b139Copy full SHA for bd4b139
src/crypt4gh.h
@@ -37,26 +37,6 @@ typedef enum {
37
} header_data_encryption_type;
38
39
40
-/*
41
- * Copy a value to cp in little-endian format
42
- */
43
-
44
-#define PUT_64BIT_LE(cp, value) do { \
45
- (cp)[7] = (value) >> 56; \
46
- (cp)[6] = (value) >> 48; \
47
- (cp)[5] = (value) >> 40; \
48
- (cp)[4] = (value) >> 32; \
49
- (cp)[3] = (value) >> 24; \
50
- (cp)[2] = (value) >> 16; \
51
- (cp)[1] = (value) >> 8; \
52
- (cp)[0] = (value); } while (0)
53
54
-#define PUT_32BIT_LE(cp, value) do { \
55
56
57
58
59
60
/*
61
* Read 8 bytes from p and
62
* get its integer representation in little-endian format
0 commit comments