mirror of
https://github.com/zrax/pycdc.git
synced 2026-06-23 11:34:07 +00:00
2 lines
111 B
Python
2 lines
111 B
Python
def _lsbStrToInt(str):
|
|
return ord(str[0]) + (ord(str[1]) << 8) + (ord(str[2]) << 16) + (ord(str[3]) << 24)
|