mirror of
https://github.com/mdbtools/mdbtools.git
synced 2025-04-05 20:31:00 +08:00
Provide vasprintf on Windows
This commit is contained in:
parent
7ecd132e57
commit
8ef1c6e1c3
@ -5,6 +5,7 @@
|
||||
#include <locale.h>
|
||||
#include <inttypes.h>
|
||||
#include <string.h>
|
||||
#include <strings.h>
|
||||
|
||||
// for ntohl
|
||||
#ifdef _WIN32
|
||||
|
@ -83,6 +83,24 @@ char *g_strconcat(const char *first, ...) {
|
||||
return ret;
|
||||
}
|
||||
|
||||
#ifdef _MSC_VER
|
||||
int vasprintf(char **ret, const char *format, va_list ap) {
|
||||
int len;
|
||||
int retval;
|
||||
char *result;
|
||||
if ((len = _vscprintf(format, ap)) < 0)
|
||||
return -1;
|
||||
if ((result = malloc(len+1)) == NULL)
|
||||
return -1;
|
||||
if ((retval = _vsprintf_s(result, len+1, format, ap)) == -1) {
|
||||
free(result);
|
||||
return -1;
|
||||
}
|
||||
*ret = result;
|
||||
return retval;
|
||||
}
|
||||
#endif
|
||||
|
||||
char *g_strdup_printf(const char *format, ...) {
|
||||
char *ret = NULL;
|
||||
va_list argp;
|
||||
|
Loading…
Reference in New Issue
Block a user