diff options
| author | enricotenuti <tenutz_27@outlook.it> | 2024-09-29 12:42:31 +0200 |
|---|---|---|
| committer | enricotenuti <tenutz_27@outlook.it> | 2024-09-29 12:42:31 +0200 |
| commit | 7a52b4cd50a40e4bce919b6bd51203d0e9867141 (patch) | |
| tree | 95ab133f9771c4791d5c784f1b3d4822b1dd7d3c /test/090_tables_readwrite | |
| parent | 8fcfb3a33fe053ed2032d58ecc0b5d640c155931 (diff) | |
| parent | 774a824a6c80b5af495f4fb99d98758e3b9f6b81 (diff) | |
| download | nissy-core-7a52b4cd50a40e4bce919b6bd51203d0e9867141.tar.gz nissy-core-7a52b4cd50a40e4bce919b6bd51203d0e9867141.zip | |
Merge remote-tracking branch 'upstream/master'
Merge upstream
Diffstat (limited to 'test/090_tables_readwrite')
| -rw-r--r-- | test/090_tables_readwrite/tables_readwrite_tests.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/test/090_tables_readwrite/tables_readwrite_tests.c b/test/090_tables_readwrite/tables_readwrite_tests.c index e1c2015..73c4e21 100644 --- a/test/090_tables_readwrite/tables_readwrite_tests.c +++ b/test/090_tables_readwrite/tables_readwrite_tests.c | |||
| @@ -5,19 +5,19 @@ | |||
| 5 | #define INFO_DISTRIBUTION_LEN 21 | 5 | #define INFO_DISTRIBUTION_LEN 21 |
| 6 | 6 | ||
| 7 | typedef struct { | 7 | typedef struct { |
| 8 | char solver[INFO_SOLVER_STRLEN]; | 8 | uint64_t distribution[INFO_DISTRIBUTION_LEN]; |
| 9 | uint64_t type; | 9 | uint64_t type; |
| 10 | uint64_t infosize; | 10 | uint64_t infosize; |
| 11 | uint64_t fullsize; | 11 | uint64_t fullsize; |
| 12 | uint64_t hash; | 12 | uint64_t hash; |
| 13 | uint64_t entries; | 13 | uint64_t entries; |
| 14 | uint64_t classes; | 14 | uint64_t classes; |
| 15 | uint64_t next; | ||
| 16 | char solver[INFO_SOLVER_STRLEN]; | ||
| 15 | uint8_t h48h; | 17 | uint8_t h48h; |
| 16 | uint8_t bits; | 18 | uint8_t bits; |
| 17 | uint8_t base; | 19 | uint8_t base; |
| 18 | uint8_t maxvalue; | 20 | uint8_t maxvalue; |
| 19 | uint64_t next; | ||
| 20 | uint64_t distribution[INFO_DISTRIBUTION_LEN]; | ||
| 21 | } tableinfo_t; | 21 | } tableinfo_t; |
| 22 | 22 | ||
| 23 | bool readtableinfo(const void *, tableinfo_t *); | 23 | bool readtableinfo(const void *, tableinfo_t *); |
