diff options
author | Christopher Peplin <chris.peplin@rhubarbtech.com> | 2013-12-29 15:15:16 -0500 |
---|---|---|
committer | Christopher Peplin <chris.peplin@rhubarbtech.com> | 2013-12-29 15:15:16 -0500 |
commit | 518430f122772016715660086a630ff595e4fcfd (patch) | |
tree | a3cbf7dd200101c5051a97a0dc023f33ab4867db /src/bitfield/bitfield.h | |
parent | 9817085bc127532b9724d80e16343cb78e3ca27a (diff) |
Add a function to set a single nibble in a bitarray.
Diffstat (limited to 'src/bitfield/bitfield.h')
-rw-r--r-- | src/bitfield/bitfield.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/bitfield/bitfield.h b/src/bitfield/bitfield.h index b58e4e59..990482fc 100644 --- a/src/bitfield/bitfield.h +++ b/src/bitfield/bitfield.h @@ -110,6 +110,9 @@ bool copy_bits_right_aligned(const uint8_t source[], const uint16_t source_lengt const uint16_t offset, const uint16_t bit_count, uint8_t* destination, const uint16_t destination_length); +bool set_nibble(const uint16_t nibble_index, const uint8_t value, + uint8_t* destination, const uint16_t destination_length); + #ifdef __cplusplus } #endif |