Rev 2208 | Rev 2571 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed
| Rev 2208 | Rev 2441 | ||
|---|---|---|---|
| Line 416... | Line 416... | ||
| 416 | * are specified using "*", the first parameter is used for width and the second one |
416 | * are specified using "*", the first parameter is used for width and the second one |
| 417 | * for precision. |
417 | * for precision. |
| 418 | * |
418 | * |
| 419 | * TYPE:@n |
419 | * TYPE:@n |
| 420 | * - "hh" Signed or unsigned char.@n |
420 | * - "hh" Signed or unsigned char.@n |
| 421 | * - "h" Signed or usigned short.@n |
421 | * - "h" Signed or unsigned short.@n |
| 422 | * - "" Signed or usigned int (default value).@n |
422 | * - "" Signed or unsigned int (default value).@n |
| 423 | * - "l" Signed or usigned long int.@n |
423 | * - "l" Signed or unsigned long int.@n |
| 424 | * - "ll" Signed or usigned long long int.@n |
424 | * - "ll" Signed or unsigned long long int.@n |
| 425 | * - "z" unative_t (non-standard extension).@n |
425 | * - "z" unative_t (non-standard extension).@n |
| 426 | * |
426 | * |
| 427 | * |
427 | * |
| 428 | * CONVERSION:@n |
428 | * CONVERSION:@n |
| 429 | * - % Print percentile character itself. |
429 | * - % Print percentile character itself. |
| Line 431... | Line 431... | ||
| 431 | * - c Print single character. |
431 | * - c Print single character. |
| 432 | * |
432 | * |
| 433 | * - s Print zero terminated string. If a NULL value is passed as value, "(NULL)" is printed instead. |
433 | * - s Print zero terminated string. If a NULL value is passed as value, "(NULL)" is printed instead. |
| 434 | * |
434 | * |
| 435 | * - P, p Print value of a pointer. Void * value is expected and it is printed in hexadecimal notation with prefix |
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 | * - b Print value as unsigned binary number. Prefix is not printed by default. (Nonstandard extension.) |
438 | * - b Print value as unsigned binary number. Prefix is not printed by default. (Nonstandard extension.) |
| 439 | * |
439 | * |
| 440 | * - o Print value as unsigned octal number. Prefix is not printed by default. |
440 | * - o Print value as unsigned octal number. Prefix is not printed by default. |
| 441 | * |
441 | * |