ASCII->POLY: improve doxygen comments

This commit is contained in:
hasufell 2014-05-26 21:59:29 +02:00
parent 7e7ee38404
commit 03d935d088
No known key found for this signature in database
GPG Key ID: 220CD1C5BDEED020
1 changed files with 6 additions and 0 deletions

View File

@ -45,6 +45,8 @@
* Convert an integer to it's binary representation
* as a string and return it.
*
* As in: 90 => "10110101"
*
* @param value the integer to convert
* @return the binary representation as a newly allocated string
*/
@ -56,6 +58,10 @@ get_int_to_bin_str(uint8_t value);
* integers to the corresponding array of ascii chars, which
* is NULL-terminated.
*
* It reads in 8bit chunks, as in:
*
* 10110101|00111100|01011001 => 90|60|89 => "Z<Y"
*
* @param binary_rep the binary representation of multiple
* integers concatenated
* @return NULL-terminated array of corresponding ascii-chars,