Posts Tagged ‘vasprintf’

asprintf, vasprintf – print to allocated string
USAGE
#define _GNU_SOURCE
#include <stdio.h>

int asprintf(char **strp, const char *fmt, …);

int vasprintf(char **strp, const char *fmt, va_list ap);

DESCRIPTION
[...]

Wednesday, August 26th, 2009 at 02:04 | Comments Off
Categories: A
TOP