This commit is contained in:
Stefan Etringer 2022-12-12 22:41:03 +01:00
parent 806c652158
commit 48f5cbcdc0
1 changed files with 7 additions and 7 deletions

View File

@ -5,14 +5,14 @@
## Parameters
|Parameters |Type |Passed as
|Parameters |Type |Passed as |
|-----------------|-------------------------------------------|-----------|
%d decimal (int) value
%u unsigned decimal (unsigned int) value
%x hexadecimal (unsigned int) value
%p hexadecimal (unsigned int), nice layout value
%s string ((const) (unsigned) char*) reference
%n write the number of bytes ypu put in, (*int) reference
| %d | decimal (int) | value |
| %u | unsigned decimal (unsigned int) | value |
| %x | hexadecimal (unsigned int) | value |
| %p | hexadecimal (unsigned int), nice layout | value |
| %s | string ((const) (unsigned) char*) | reference |
| %n | write the number of bytes ypu put in, (*int) | reference |
## Offset