Tôi đã thử mã của @Valentin Milea nhưng tôi gặp lỗi vi phạm quyền truy cập. Điều duy nhất hiệu quả với tôi là triển khai Insane Coding: http://asprintf.insanecoding.org/
Cụ thể, tôi đã làm việc với mã kế thừa VC ++ 2008. Từ Insane Mã hóa của thực hiện (có thể được tải về từ liên kết ở trên), tôi sử dụng ba tập tin: asprintf.c
, asprintf.h
và vasprintf-msvc.c
. Các tệp khác dành cho các phiên bản khác của MSVC.
[EDIT] Để hoàn chỉnh, nội dung của chúng như sau:
asprintf.h:
#ifndef INSANE_ASPRINTF_H
#define INSANE_ASPRINTF_H
#ifndef __cplusplus
#include <stdarg.h>
#else
#include <cstdarg>
extern "C"
{
#endif
#define insane_free(ptr) { free(ptr); ptr = 0; }
int vasprintf(char **strp, const char *fmt, va_list ap);
int asprintf(char **strp, const char *fmt, ...);
#ifdef __cplusplus
}
#endif
#endif
asprintf.c:
#include "asprintf.h"
int asprintf(char **strp, const char *fmt, ...)
{
int r;
va_list ap;
va_start(ap, fmt);
r = vasprintf(strp, fmt, ap);
va_end(ap);
return(r);
}
vasprintf-msvc.c:
#include <stdio.h>
#include <stdlib.h>
#include <limits.h>
#include "asprintf.h"
int vasprintf(char **strp, const char *fmt, va_list ap)
{
int r = -1, size = _vscprintf(fmt, ap);
if ((size >= 0) && (size < INT_MAX))
{
*strp = (char *)malloc(size+1); //+1 for null
if (*strp)
{
r = vsnprintf(*strp, size+1, fmt, ap); //+1 for null
if ((r < 0) || (r > size))
{
insane_free(*strp);
r = -1;
}
}
}
else { *strp = 0; }
return(r);
}
Cách sử dụng (một phần test.c
được cung cấp bởi Insane Coding):
#include <stdio.h>
#include <stdlib.h>
#include "asprintf.h"
int main()
{
char *s;
if (asprintf(&s, "Hello, %d in hex padded to 8 digits is: %08x\n", 15, 15) != -1)
{
puts(s);
insane_free(s);
}
}