9 lines
379 B
Markdown
9 lines
379 B
Markdown
LEB128 or Little Endian Base 128 is a variable-length code compression used to store arbitrarily large integers in a small number of bytes.
|
|
|
|
|
|
Resources used:
|
|
https://en.wikipedia.org/wiki/LEB128
|
|
- Mostly turning pseudocode from here to Scheme
|
|
https://github.com/mohanson/leb128
|
|
- Code for leb128 to integer handling as we dont know integer size like in C
|