CppSerdes  1.0
A serialization/deserialization library designed with embedded systems in mind
bitcpy.h
Go to the documentation of this file.
1 #ifndef _BITCPY_H_
8 #define _BITCPY_H_
9 
10 // size_t bitcpy(T1 &dest, const T2 source[], const size_t bit_offset, const size_t bits)
11 #include "bitcpy_to_array.h"
12 
13 // size_t bitcpy(T1 dest[], const T2 source, const size_t bit_offset, const size_t bits)
14 #include "bitcpy_from_array.h"
15 
16 #endif // _BITCPY_H_
Defines serialization functions in the form of: size_t bitcpy(T1 dest[], const T2 source...
Defines deserialization functions in the form of: size_t bitcpy(T1 &dest, const T2 source[]...