diff --git a/lib/print.h b/lib/print.h index 5a6d3e6..f92c0f5 100644 --- a/lib/print.h +++ b/lib/print.h @@ -13,8 +13,8 @@ * */ /** printing utilities to replace the large printf from the standard library (API) - * use % as format specifier prefix, followed by + to enforce sign of prefix, 0 and 0-9 for padding, and format specifier - * format specifier supported are: c for char, s for string, u for uint32_t, d for int32_t, U for uint64_t, D for int64_t, x for lower case hex up to uint32_t, X for upper case hex up to uint32_t, b for bits up to uint32_t + * @details use % as format specifier prefix, followed by + to enforce sign of prefix, 0 and 0-9 for padding, and format specifier + * @details format specifier supported are: c for char, s for string, u for uint32, d for int32, U for uint64, D for int64, x for lower case hex up to uint32, X for upper case hex up to uint32, b for bits up to uint32 * @file print.h * @author King Kévin * @date 2017