EtcPal  0.4.1
ETC Platform Abstraction Layer (EtcPal)
View other versions:
pack.h
1 /******************************************************************************
2  * Copyright 2022 ETC Inc.
3  *
4  * Licensed under the Apache License, Version 2.0 (the "License");
5  * you may not use this file except in compliance with the License.
6  * You may obtain a copy of the License at
7  *
8  * http://www.apache.org/licenses/LICENSE-2.0
9  *
10  * Unless required by applicable law or agreed to in writing, software
11  * distributed under the License is distributed on an "AS IS" BASIS,
12  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13  * See the License for the specific language governing permissions and
14  * limitations under the License.
15  *******************************************************************************
16  * This file is a part of EtcPal. For more information, go to:
17  * https://github.com/ETCLabs/EtcPal
18  ******************************************************************************/
19 
20 /* etcpal/pack.h: Platform- and endianness-independent buffer packing and unpacking. */
21 
22 #ifndef ETCPAL_PACK_H_
23 #define ETCPAL_PACK_H_
24 
25 #include <stdint.h>
26 
62 #ifdef __cplusplus
63 extern "C" {
64 #endif
65 
66 int16_t etcpal_unpack_i16b(const uint8_t* buf);
67 void etcpal_pack_i16b(uint8_t* buf, int16_t val);
68 int16_t etcpal_unpack_i16l(const uint8_t* buf);
69 void etcpal_pack_i16l(uint8_t* buf, int16_t val);
70 
71 uint16_t etcpal_unpack_u16b(const uint8_t* buf);
72 void etcpal_pack_u16b(uint8_t* buf, uint16_t val);
73 uint16_t etcpal_unpack_u16l(const uint8_t* buf);
74 void etcpal_pack_u16l(uint8_t* buf, uint16_t val);
75 
76 int32_t etcpal_unpack_i32b(const uint8_t* buf);
77 void etcpal_pack_i32b(uint8_t* buf, int32_t val);
78 int32_t etcpal_unpack_i32l(const uint8_t* buf);
79 void etcpal_pack_i32l(uint8_t* buf, int32_t val);
80 
81 uint32_t etcpal_unpack_u32b(const uint8_t* buf);
82 void etcpal_pack_u32b(uint8_t* buf, uint32_t val);
83 uint32_t etcpal_unpack_u32l(const uint8_t* buf);
84 void etcpal_pack_u32l(uint8_t* buf, uint32_t val);
85 
86 #ifdef __cplusplus
87 }
88 #endif
89 
94 #endif /* ETCPAL_PACK_H_ */
int16_t etcpal_unpack_i16b(const uint8_t *buf)
Unpack an int16_t from a known big-endian buffer.
Definition: pack.c:34
uint32_t etcpal_unpack_u32l(const uint8_t *buf)
Unpack a uint32_t from a known little-endian buffer.
Definition: pack.c:208
void etcpal_pack_u32l(uint8_t *buf, uint32_t val)
Pack a uint32_t to a known little-endian buffer.
Definition: pack.c:226
int32_t etcpal_unpack_i32b(const uint8_t *buf)
Unpack an int32_t from a known big-endian buffer.
Definition: pack.c:134
uint32_t etcpal_unpack_u32b(const uint8_t *buf)
Unpack a uint32_t from a known big-endian buffer.
Definition: pack.c:174
void etcpal_pack_i32l(uint8_t *buf, int32_t val)
Pack an int32_t to a known little-endian buffer.
Definition: pack.c:164
void etcpal_pack_i32b(uint8_t *buf, int32_t val)
Pack an int32_t to a known big-endian buffer.
Definition: pack.c:144
void etcpal_pack_i16b(uint8_t *buf, int16_t val)
Pack an int16_t to a known big-endian buffer.
Definition: pack.c:44
void etcpal_pack_u16l(uint8_t *buf, uint16_t val)
Pack a uint16_t to a known little-endian buffer.
Definition: pack.c:120
void etcpal_pack_u32b(uint8_t *buf, uint32_t val)
Pack a uint32_t to a known big-endian buffer.
Definition: pack.c:192
int16_t etcpal_unpack_i16l(const uint8_t *buf)
Unpack an int16_t from a known little-endian buffer.
Definition: pack.c:54
uint16_t etcpal_unpack_u16l(const uint8_t *buf)
Unpack a uint16_t from a known little-endian buffer.
Definition: pack.c:104
void etcpal_pack_i16l(uint8_t *buf, int16_t val)
Pack an int16_t to a known little-endian buffer.
Definition: pack.c:64
void etcpal_pack_u16b(uint8_t *buf, uint16_t val)
Pack a uint16_t to a known big-endian buffer.
Definition: pack.c:90
uint16_t etcpal_unpack_u16b(const uint8_t *buf)
Unpack a uint16_t from a known big-endian buffer.
Definition: pack.c:74
int32_t etcpal_unpack_i32l(const uint8_t *buf)
Unpack an int32_t from a known little-endian buffer.
Definition: pack.c:154