Mass reformat

This commit is contained in:
Imbus 2025-08-18 14:59:16 +02:00
parent 4d27def35e
commit df11e34235
27 changed files with 121 additions and 136 deletions

2
djb2.c
View file

@ -6,7 +6,7 @@
unsigned long djb2(const char *str) {
unsigned long h = 5381;
int c;
int c;
while ((c = *str++)) h = ((h << 5) + h) + c; // h = h * 33 + c;