42_minishell/env3.c

86 lines
2.1 KiB
C
Raw Normal View History

2023-02-17 10:54:58 -05:00
/* ************************************************************************** */
/* */
/* ::: :::::::: */
2023-02-17 11:46:12 -05:00
/* env3.c :+: :+: :+: */
2023-02-17 10:54:58 -05:00
/* +:+ +:+ +:+ */
/* By: erey-bet <marvin@42.fr> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
2023-02-17 11:46:12 -05:00
/* Created: 2023/02/17 17:25:09 by erey-bet #+# #+# */
2023-02-22 08:00:09 -05:00
/* Updated: 2023/02/22 13:28:51 by erey-bet ### ########.fr */
2023-02-17 10:54:58 -05:00
/* */
/* ************************************************************************** */
2023-02-21 08:34:49 -05:00
#include "libftx/libftx.h"
2023-02-17 10:54:58 -05:00
#include "minishell.h"
2023-02-17 11:46:12 -05:00
char *get_value(char *str)
2023-02-17 10:54:58 -05:00
{
2023-02-17 11:46:12 -05:00
char *s;
int i;
int start;
s = ft_calloc(ft_strlen(str), sizeof(char));
start = get_index(str, '=');
i = start;
while (str[++i])
s[i - start - 1] = str[i];
return (s);
}
char *get_key(char *str)
{
char *s;
int i;
s = ft_calloc(ft_strlen(str), sizeof(char));
i = -1;
while (str[++i] != '=')
s[i] = str[i];
return (s);
2023-02-17 10:54:58 -05:00
}
2023-02-21 08:34:49 -05:00
int create_value_by_key_dup(char *key, char *value, t_list **env)
{
char *key_dup;
char *value_dup;
key_dup = ft_strdup(key);
if (key_dup == NULL)
{
ft_eprintf("minishell: malloc failed\n");
return (1);
}
value_dup = ft_strdup(value);
if (value_dup == NULL)
{
free(key);
ft_eprintf("minishell: malloc failed\n");
return (1);
}
if (create_value_by_key(key_dup, value_dup, env))
return (1);
return (0);
}
2023-02-22 07:24:35 -05:00
int delete_by_key(char *key, t_list **head)
{
t_list *last;
t_list *current;
current = *head;
while (current->next != NULL)
{
if (ft_strcmp(((t_env *)current->content)->key, key) == 0)
{
if (last->next != NULL)
last->next = current->next;
else
*head = current->next;
2023-02-22 08:00:09 -05:00
return (1);
2023-02-22 07:24:35 -05:00
}
last = current;
current = current->next;
}
2023-02-22 08:00:09 -05:00
return (0);
2023-02-22 07:24:35 -05:00
}