mirror of
https://github.com/flipperdevices/flipperzero-firmware.git
synced 2025-12-12 12:51:22 +04:00
6 lines
132 B
Python
6 lines
132 B
Python
|
|
def gnu_sym_hash(name: str) -> int:
|
||
|
|
h = 0x1505
|
||
|
|
for c in name:
|
||
|
|
h = ((h << 5) + h + ord(c)) & 0xFFFFFFFF
|
||
|
|
return h
|