Mass reformat
This commit is contained in:
parent
4d27def35e
commit
df11e34235
27 changed files with 121 additions and 136 deletions
2
djb2.c
2
djb2.c
|
|
@ -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;
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue