print: fix doc

This commit is contained in:
King Kévin 2017-12-13 14:11:34 +01:00
parent ed0245ae54
commit 8542914426
1 changed files with 8 additions and 8 deletions

View File

@ -17,14 +17,14 @@
* format specifier supported are:
* - c for character
* - s for string
* - u up to uint32_t
* - U for uint64_t
* - d up to int32_t
* - D for int64_t
* - x for lower case hex up to uint32_t
* - X for lower case hex for uint64_t
* - h for upper case hex up to uint32_t
* - H for upper case hex for uint64_t
* - u for up to uint32_t unsigned integer
* - U for uint64_t unsigned integer
* - d for up to int32_t signed integer
* - D for int64_t signed integer
* - x for up to uint32_t lower case hexadecimal
* - X for uint64_t lower case hexadecimal
* - h for up to uint32_t upper case hexadecimal
* - H for uint64_t upper case hexadecimal
* - b for bits up to uint32_t
* @file print.h
* @author King Kévin <kingkevin@cuvoodoo.info>