blob: a4d959cb017185d2bbbd515e4a60f962dd1c1a38 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
/*
* endian_converters.h
*
* Created on: Sep 22, 2025
* Author: sowgro
*/
#ifndef INC_HOMEWORK_ENDIAN_CONVERTERS_H_
#define INC_HOMEWORK_ENDIAN_CONVERTERS_H_
uint16_t convert_to_uint16(uint8_t* p_value);
uint32_t convert_to_uint24(uint8_t* p_value);
uint32_t convert_to_uint32(uint8_t* p_value);
#endif /* INC_HOMEWORK_ENDIAN_CONVERTERS_H_ */
|