Updated encode functions documentation

This commit is contained in:
Celine Mercier
2016-04-21 13:46:02 +02:00
parent c7b8db6a2e
commit 1941a3785e

View File

@ -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'.