Changeset 7f043c0 in mainline for kernel/generic/src/printf/printf_core.c
- Timestamp:
- 2007-05-31T21:39:13Z (18 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 7bb0c32
- Parents:
- d8431986
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
kernel/generic/src/printf/printf_core.c
rd8431986 r7f043c0 419 419 * TYPE:@n 420 420 * - "hh" Signed or unsigned char.@n 421 * - "h" Signed or u signed short.@n422 * - "" Signed or u signed int (default value).@n423 * - "l" Signed or u signed long int.@n424 * - "ll" Signed or u signed long long int.@n421 * - "h" Signed or unsigned short.@n 422 * - "" Signed or unsigned int (default value).@n 423 * - "l" Signed or unsigned long int.@n 424 * - "ll" Signed or unsigned long long int.@n 425 425 * - "z" unative_t (non-standard extension).@n 426 426 * … … 434 434 * 435 435 * - P, p Print value of a pointer. Void * value is expected and it is printed in hexadecimal notation with prefix 436 * (as with \%#X or\%#x for 32bit or \%#X / \%#x for 64bit long pointers).436 * (as with \%#X / \%#x for 32bit or \%#X / \%#x for 64bit long pointers). 437 437 * 438 438 * - b Print value as unsigned binary number. Prefix is not printed by default. (Nonstandard extension.)
Note:
See TracChangeset
for help on using the changeset viewer.