aboutsummaryrefslogtreecommitdiffstats
path: root/Projects/Magstripe/Lib
diff options
context:
space:
mode:
Diffstat (limited to 'Projects/Magstripe/Lib')
-rw-r--r--Projects/Magstripe/Lib/CircularBitBuffer.c3
-rw-r--r--Projects/Magstripe/Lib/CircularBitBuffer.h3
2 files changed, 4 insertions, 2 deletions
diff --git a/Projects/Magstripe/Lib/CircularBitBuffer.c b/Projects/Magstripe/Lib/CircularBitBuffer.c
index 8be527b4d..c1b21039c 100644
--- a/Projects/Magstripe/Lib/CircularBitBuffer.c
+++ b/Projects/Magstripe/Lib/CircularBitBuffer.c
@@ -50,7 +50,8 @@ void BitBuffer_Init(BitBuffer_t* const Buffer)
}
/** Function to store the given bit into the given bit buffer. */
-void BitBuffer_StoreNextBit(BitBuffer_t* const Buffer, const bool Bit)
+void BitBuffer_StoreNextBit(BitBuffer_t* const Buffer,
+ const bool Bit)
{
/* If the bit to store is true, set the next bit in the buffer */
if (Bit)
diff --git a/Projects/Magstripe/Lib/CircularBitBuffer.h b/Projects/Magstripe/Lib/CircularBitBuffer.h
index dff4d2e5d..973c7c26c 100644
--- a/Projects/Magstripe/Lib/CircularBitBuffer.h
+++ b/Projects/Magstripe/Lib/CircularBitBuffer.h
@@ -82,7 +82,8 @@
* \param[in,out] Buffer Bit buffer to store a bit into
* \param[in] Bit Bit to store into the buffer
*/
- void BitBuffer_StoreNextBit(BitBuffer_t* const Buffer, const bool Bit) ATTR_NON_NULL_PTR_ARG(1);
+ void BitBuffer_StoreNextBit(BitBuffer_t* const Buffer,
+ const bool Bit) ATTR_NON_NULL_PTR_ARG(1);
/** Retrieves a bit from the next location inside a given bit buffer.
*