nell 0.3.0

Linux netlink interface
Documentation
1
2
3
4
5
6
7
// Copyright (C) 2020 - Will Glozer. All rights reserved.

const ALIGNTO: usize = 4;

pub const fn align(len: usize) -> usize {
    (len + ALIGNTO - 1) & !(ALIGNTO - 1)
}