diff --git a/src/encode.h b/src/encode.h index 82c4573..5720dda 100644 --- a/src/encode.h +++ b/src/encode.h @@ -22,10 +22,10 @@ #include "obitypes.h" -#define NUC_MASK_2B 0x3 /**< Binary: 11 to use when decoding 2 bits sequences - */ -#define NUC_MASK_4B 0xF /**< Binary: 1111 to use when decoding 4 bits sequences - */ +#define NUC_MASK_2B 0x3 /**< Binary: 11 to use when decoding 2 bits sequences + */ +#define NUC_MASK_4B 0xF /**< Binary: 1111 to use when decoding 4 bits sequences + */ /** @@ -107,7 +107,7 @@ byte_t* encode_seq_on_2_bits(const char* seq, int32_t length); * 10 -> t * 11 -> g * - * @param seq The sequence to decode. + * @param seq_b The sequence to decode. * @param length_seq The initial length of the sequence before it was encoded. * * @returns The decoded sequence ended with '\0'. @@ -169,7 +169,7 @@ byte_t* encode_seq_on_4_bits(const char* seq, int32_t length); * V or v : 1110 * N or n : 1111 * - * @param seq The sequence to decode. + * @param seq_b The sequence to decode. * @param length_seq The initial length of the sequence before it was encoded. * * @returns The decoded sequence ended with '\0'.