Age | Commit message (Collapse) | Author | |
---|---|---|---|
2009-07-23 | Adds %R printf directive for Router ID. | Ondrej Zajicek | |
2001-08-19 | IP address formatting now uses the same rules as formatting of strings | Martin Mares | |
with two exceptions: o Any non-zero field width is automatically replaced by standard IP address width. This hides dependences on IPv4/IPv6. o %#I generates hexadecimal form of the address. Therefore |%I| generates unpadded format, |%1I| full size flush-right, and |%-1I| full size flush-left format. | |||
2000-06-04 | Added library progdocs. | Martin Mares | |
2000-05-02 | Defined format specifier `%M' which behaves as `%m', but takes the | Martin Mares | |
error code as an argument. Use it in socket hooks where we really shouldn't rely on errno containing the right value or even existing. | |||
2000-04-01 | Include "lib/string.h" instead of <string.h>. It should give us bzero() | Martin Mares | |
and other non-portable functions on all systems. | |||
1998-11-21 | Killed bug in processing of 'h' prefix. Patch taken from linux-2.1.129. | Martin Mares | |
1998-11-16 | Implemented snprintf and similar functions. It took a lot of thinking, | Martin Mares | |
but the modifications were relatively simple and straightforward. | |||
1998-06-17 | Oops, forgot '%m'... | Martin Mares | |
1998-06-17 | Added local version of sprintf (bsprintf and bvsprintf) offering few new | Martin Mares | |
format strings: %I IP address %#I IP address in hexadecimal %1I IP address padded to full length %m strerror(errno) |