aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorChristopher Peplin <chris.peplin@rhubarbtech.com>2013-12-29 14:46:27 -0500
committerChristopher Peplin <chris.peplin@rhubarbtech.com>2013-12-29 14:46:27 -0500
commit9817085bc127532b9724d80e16343cb78e3ca27a (patch)
tree790132601994cbef31c3675ce6d18abf9c7ccb69 /src
parent418b64039712979dccd8b852cd1a28b857282f11 (diff)
Remove function declaration for deleted function.
Diffstat (limited to 'src')
-rw-r--r--src/bitfield/8byte.h9
1 files changed, 0 insertions, 9 deletions
diff --git a/src/bitfield/8byte.h b/src/bitfield/8byte.h
index 818372d5..e4773a51 100644
--- a/src/bitfield/8byte.h
+++ b/src/bitfield/8byte.h
@@ -87,15 +87,6 @@ uint8_t eightbyte_get_byte(const uint64_t source, const uint8_t byte_index,
bool set_bit_field(uint64_t* destination, uint64_t value, const uint16_t offset,
const uint16_t bit_count);
-/* Public: Retreive the nth byte out of 8 bytes in a uint64_t.
- *
- * source - the source data to retreive the byte from.
- * byte_index - the index of the byte, starting at 0 and assuming big-endian order.
- *
- * Returns the requested byte from the source bytes.
- */
-uint8_t nth_byte(const uint64_t source, const uint16_t byte_index);
-
/* Private: Determine the index of the last bit used.
*/
uint8_t find_end_bit(const uint16_t num_bits);