This commit is contained in:
King Kévin 2017-05-04 18:53:24 +02:00
parent a244b522d9
commit d04212b8ff
1 changed files with 2 additions and 2 deletions

View File

@ -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 <kingkevin@cuvoodoo.info>
* @date 2017