aboutsummaryrefslogblamecommitdiff
path: root/lib/dhcp/types.h
blob: 049de0f8937a7b03cb46ab79ef3bbe8c95998d87 (plain) (tree)
1
2
3
4
5
6
7
8
9
10
11
12
13
14













                                     
// Copyright (c) 2022 Johannes Stoelp

#ifndef TYPES_H
#define TYPES_H

#include <cstddef>
#include <cstdint>

using u8 = uint8_t;
using u16 = uint16_t;
using u32 = uint32_t;
using usize = size_t;

#endif