sys/fmt: Add print_s64_dec to header

This commit is contained in:
MrKevinWeiss 2021-02-08 17:07:42 +01:00
parent d7f3e92c30
commit c84c34c005

View File

@ -475,6 +475,15 @@ void print_u64_hex(uint64_t val);
*/
void print_u64_dec(uint64_t val);
/**
* @brief Print int64 value as decimal to stdout
*
* @note This uses fmt_s64_dec(), which uses ~400b of code.
*
* @param[in] val Value to print
*/
void print_s64_dec(uint64_t val);
/**
* @brief Print float value
*