zint.h: add version string, mention "manual.html" and website

README: mention "manual.html"
tools/update_version.php: update for "zint.h" version, README year
test suite: fix some clang-tidy-20 warnings
This commit is contained in:
gitlost 2024-11-18 18:50:26 +00:00
parent 86b6a0553b
commit 1ae7815d95
6 changed files with 24 additions and 10 deletions

View file

@ -1896,6 +1896,10 @@ int testUtilCmpBins(const char *bin1, const char *bin2) {
do {
len1 = fread(buf1, 1, sizeof(buf1), fp1);
len2 = fread(buf2, 1, sizeof(buf2), fp2);
if (ferror(fp1) || ferror(fp2)) {
ret = 4;
break;
}
if (len1 != len2) {
ret = 6;
break;