summaryrefslogtreecommitdiffstats
path: root/runtime/vsprintf.c
Commit message (Collapse)AuthorAgeFilesLines
* 2006-07-20 Martin Hunt <hunt@redhat.com>hunt2006-07-211-5/+8
| | | | * vsprintf.c (_stp_vsnprintf): %p format fixes.
* 2006-05-25 Martin Hunt <hunt@redhat.com>hunt2006-05-251-1/+17
| | | | | * vsprintf.c (_stp_vsnprintf): Change %p to work like libc and automatically insert "0x" before the pointer.
* %0s support to print null-terminated stringguanglei2006-05-091-0/+5
|
* 2006-04-28 Martin Hunt <hunt@redhat.com>hunt2006-04-281-1/+1
| | | | * vsprintf.c (_stp_vsnprintf): Fix argument size for %p.
* 2006-04-17 Martin Hunt <hunt@redhat.com>hunt2006-04-171-27/+50
| | | | | | * vsprintf.c (_stp_vsnprintf): Fix endian before writing binary. (_stp_endian): New variable to control endianess.
* 2006-04-10 Martin Hunt <hunt@redhat.com>hunt2006-04-111-0/+11
| | | | * vsprintf.c (_stp_snprintf): New function.
* 2006-04-09 Martin Hunt <hunt@redhat.com>hunt2006-04-101-0/+389
* print.c (_stp_print_flush): Send 'len" bytes instead of 'len+1', which included terminating 0. * string.c (_stp_sprintf): Call _stp_vsnprintf() instead of vsnprintf(). (_stp_vsprintf): Ditto. * vsprintf.c: New file.