11 lines
119 B
Python
11 lines
119 B
Python
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
def _lsbStrToInt(str):
|
|
return ord(str[0]) + (ord(str[1]) << 8) + (ord(str[2]) << 16) + (ord(str[3]) << 24)
|