blob: cb09a0d2a1595b3bca05d03e3a80315cc7bfd4d8 (
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
37
38
39
40
41
42
43
44
45
46
|
/* See LICENSE file for copyright and license details. */
#include "common.h"
#ifndef TEST
#if defined(__clang__)
# pragma clang diagnostic ignored "-Wformat-nonliteral"
#endif
int
libsimple_vputenvf(const char *fmt, va_list ap)
{
va_list ap2;
int n, r;
char *s, *p;
va_copy(ap2, ap);
n = vsnprintf(NULL, 0, fmt, ap2);
va_end(ap2);
if (n < 0)
return -1;
s = malloc((size_t)n + 1);
if (!s)
return -1;
vsprintf(s, fmt, ap);
p = strchr(s, '=');
if (p) {
*p++ = '\0';
r = setenv(s, p, 1);
free(s);
} else {
r = putenv(s);
}
return r;
}
#else
#include "test.h"
int
main(void)
{
return 0; /* Tested via libsimple_putenvf */
}
#endif
|