ASCII->POLY: improve doxygen comments
This commit is contained in:
parent
7e7ee38404
commit
03d935d088
@ -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,
|
||||
|
Loading…
Reference in New Issue
Block a user