aboutsummaryrefslogtreecommitdiffstats
path: root/putenv.c
blob: b88b3cdfb583aac42cc64f7ffb940b451244d029 (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
/* See LICENSE file for copyright and license details. */
#include "internal.h"


int
liberror_putenv(char *string)
{
	const char *desc = "";
	if (!string) {
		errno = EINVAL;
		desc = "Environment string is NULL";
		goto error;
	} else if (*string == '=') {
		errno = EINVAL;
		desc = "Environment variable name is the empty string";
		goto error;
	} else if (!strchr(string, '=')) {
		errno = EINVAL;
		desc = "Environment does not contain an '=' symbol";
		goto error;
	} else if (!putenv(string)) {
		return 0;
	}
error:
	liberror_set_error_errno(desc, "putenv", errno);
	return -1;
}