Files
2025-09-13 14:39:22 +08:00

4 lines
162 B
Plaintext

def _lsbStrToInt ( str ) : <EOL>
<INDENT>
return ord ( str [ 0 ] ) + ( ord ( str [ 1 ] ) << 8 ) + ( ord ( str [ 2 ] ) << 16 ) + ( ord ( str [ 3 ] ) << 24 ) <EOL>