blob: 8af109bfe7d95f51bde07596229ad6f6d449414a (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
|
#ifndef LSTD_BYTES_H
#define LSTD_BYTES_H
#include "types.h"
u32 u32_from_bytes(const u8 *bytes);
u32 u32_from_bytes_le(const u8 *bytes);
u16 u16_from_bytes_le(const u8 *bytes);
float float_from_bytes_le(const u8 *bytes);
#endif // LSTD_BYTES_H
|