m1n1/proxyclient/utils.py
Hector Martin 7bb490eb58 utils.py: New file for misc util functions (non proxy)
Signed-off-by: Hector Martin <marcan@marcan.st>
2021-05-01 15:13:29 +09:00

6 lines
113 B
Python

#!/usr/bin/env python3
# SPDX-License-Identifier: MIT
def align(v, a=16384):
return (v + a - 1) & ~(a - 1)