mirror of
https://codeberg.org/ziglang/zig.git
synced 2025-12-06 22:04:21 +00:00
31 lines
627 B
C
Vendored
31 lines
627 B
C
Vendored
#define _GNU_SOURCE
|
|
#define __CRT__NO_INLINE
|
|
|
|
#include <stdio.h>
|
|
#include <stdlib.h>
|
|
#include <stdarg.h>
|
|
|
|
int asprintf(char ** __restrict__ ret,
|
|
const char * __restrict__ format,
|
|
...) {
|
|
va_list ap;
|
|
int len;
|
|
va_start(ap,format);
|
|
/* Get Length */
|
|
len = _vscprintf(format,ap);
|
|
if (len < 0) goto _end;
|
|
/* +1 for \0 terminator. */
|
|
*ret = malloc(len + 1);
|
|
/* Check malloc fail*/
|
|
if (!*ret) {
|
|
len = -1;
|
|
goto _end;
|
|
}
|
|
/* Write String */
|
|
_vsnprintf(*ret,len+1,format,ap);
|
|
/* Terminate explicitly */
|
|
(*ret)[len] = '\0';
|
|
_end:
|
|
va_end(ap);
|
|
return len;
|
|
}
|