[v]aprintf(3) are now part of a libc implementation: gnulib.
They are also documented in a manual page. Thus, refer to them as
[v]aprintf(3).
Signed-off-by: Alejandro Colomar <alx@kernel.org>
<stdio.h>
asprintf(3)
- Use aprintf() instead.
+ Use aprintf(3) instead.
It is difficult to handle errors after asprintf(3).
Also, it makes it more difficult for static analyzers to check
that memory is later free(3)d appropriately.
sprintf/ - Formatted string creation
- aprintf()
+ aprintf(3)
sprintf(3) variant that allocates.
It has better interface than asprintf(3).