blob: d2de1b3fa58390852655a0195aff00302ee7e128 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
|
/* See LICENSE file for copyright and license details. */
#include "common.h"
#ifndef TEST
int
libsimple_asprintf(char **strp, const char *fmt, ...)
{
va_list ap;
int r;
va_start(ap, fmt);
r = libsimple_vasprintf(strp, fmt, ap);
va_end(ap);
return r;
}
#else
#include "test.h"
int
main(void)
{
char empty[1] = "";
char *s = empty;
char *old = s;
assert(libsimple_asprintf(&s, "%i %X", 99999, 255U) == sizeof("99999 FF") - 1);
assert(s && s != old);
assert(!strcmpnul(s, "99999 FF"));
free(s);
return 0;
}
#endif
|