blob: dd1634b02bcc91d68cdbc1a4d7125197dd67b33a (
plain)
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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
|
/* ************************************************************************** */
/* */
/* ::: :::::::: */
/* u_utils.c :+: :+: :+: */
/* +:+ +:+ +:+ */
/* By: rbousset <marvin@42.fr> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2020/02/14 17:19:27 by rbousset #+# #+# */
/* Updated: 2020/02/14 17:19:29 by rbousset ### ########lyon.fr */
/* */
/* ************************************************************************** */
#include <libft.h>
#include <stdlib.h>
#include <stdint.h>
#include <unistd.h>
#include "d_define.h"
#include "f_fail.h"
#include "s_struct.h"
t_bool
u_is_not_escaped(const char *head, const char *ptr)
{
if (((ptr - head) == 0) ||
((ptr - head) >= 1 && *(ptr - 1) != C_BACKS) ||
((ptr - head) > 1 && *(ptr - 1) == C_BACKS && *(ptr - 2) == C_BACKS))
return (TRUE);
return (FALSE);
}
void
u_eof_fd(int32_t fd)
{
char *line;
close(fd);
get_next_line(fd, &line);
ft_memdel((void*)&line);
}
char
**u_get_env_var_names(t_msh *msh)
{
size_t i;
char **vars;
i = 0;
while (msh->envp[i] != NULL)
i++;
if ((vars = (char**)malloc((i + 1) * sizeof(char*))) == NULL)
f_alloc_and_destroy_msh(msh);
i = 0;
while (msh->envp[i] != NULL)
{
if ((vars[i] =
(char*)malloc((ft_strclen(msh->envp[i], '=') + 1)
* sizeof(char))) == NULL)
f_alloc_and_destroy_msh(msh);
ft_strlcpy(vars[i], msh->envp[i], ft_strclen(msh->envp[i], '=') + 1);
i++;
}
vars[i] = NULL;
return (vars);
}
uint64_t
u_builtins_get_argc(const char *args[])
{
uint64_t argc;
argc = 0;
while (args[argc])
{
argc++;
}
return (argc);
}
|