working on it

This commit is contained in:
Dawid Sobczak 2025-04-05 10:55:40 +01:00
parent 56a6e78765
commit 35a88970c2
1094 changed files with 51093 additions and 51 deletions

31
05/musl-final/src/env/setenv.c vendored Normal file
View file

@ -0,0 +1,31 @@
#include <stdlib.h>
#include <string.h>
#include <errno.h>
int __putenv(char *s, int a);
int setenv(const char *var, const char *value, int overwrite)
{
char *s;
int l1, l2;
if (strchr(var, '=')) {
errno = EINVAL;
return -1;
}
if (!overwrite && getenv(var)) return 0;
l1 = strlen(var);
l2 = strlen(value);
s = malloc(l1+l2+2);
memcpy(s, var, l1);
s[l1] = '=';
memcpy(s+l1+1, value, l2);
s[l1+l2+1] = 0;
if (__putenv(s, 1)) {
free(s);
errno = ENOMEM;
return -1;
}
return 0;
}