Initial commit

This commit is contained in:
Matias Fernandez
2018-03-27 10:45:54 -03:00
commit f4c77886bd
14 changed files with 3154 additions and 0 deletions

12
test2.py Executable file
View File

@@ -0,0 +1,12 @@
#!/usr/bin/env python3
# -*- coding: utf-8 -*-
zlibHeader = bytearray()
zlibLength = 300309
zlibHeader.append( (zlibLength>>24) & 0xFF )
zlibHeader.append( (zlibLength>>16) & 0xFF )
zlibHeader.append( (zlibLength>>8) & 0xFF )
zlibHeader.append( zlibLength & 0xFF )
print(zlibHeader)