From d04212b8ffac461a066648db8001d83c9d050935 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?King=20K=C3=A9vin?= Date: Thu, 4 May 2017 18:53:24 +0200 Subject: [PATCH] fix doc --- lib/print.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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