Compare commits
101 Commits
camille
...
15c95b45b1
Author | SHA1 | Date | |
---|---|---|---|
15c95b45b1 | |||
876c75bb92 | |||
8093b250ce | |||
2930755dd3 | |||
3540743135 | |||
5bfc613126 | |||
686ea5d0db | |||
e7f8373b4a | |||
9cbb1e139a | |||
06f6308bc4 | |||
8ea2e6c620 | |||
b2c7013cf9 | |||
960daa8658 | |||
7f4fd9d421 | |||
da75bdbf72 | |||
af7336fbf3 | |||
00dc583ff8 | |||
4342d9a015 | |||
46d30864ed | |||
e0e329a355 | |||
6e0d7288e8 | |||
5541a1f3fe | |||
d5eb265a3f | |||
b914753c47 | |||
5948237aad | |||
9a5cca3e2d | |||
00e570d92e | |||
77620211da | |||
07bc37cc71 | |||
ed546f5a8d | |||
ca18dd4205 | |||
370e5149d5 | |||
fc82eefd7b | |||
51f892350a | |||
0941f3a370 | |||
9f0b0f5422 | |||
3d66fbe9a9 | |||
1626424ed7 | |||
8e22eb210a | |||
57be71a168 | |||
0327d0f5d7 | |||
2f386686c6 | |||
7728ded62d | |||
405c1937cd | |||
b98717ae1a | |||
413d75b94c | |||
4f66624667 | |||
f31d805d83 | |||
28fedfdd75 | |||
0661f2fbd1 | |||
29a4a864c3 | |||
cdde24f0d0 | |||
a4befa5fa6 | |||
94f48602d1 | |||
2b66ce5bc3 | |||
f346c5c2ce | |||
9ace235831 | |||
4e92c03637 | |||
76bc8fbfd8 | |||
916f2c3c50 | |||
89c80e9bdb | |||
eb4a8ed663 | |||
3fb6eb65a8 | |||
1fdc51a668 | |||
03a2cc055c | |||
a136a66522 | |||
0ece156b97 | |||
4c45a2c603 | |||
b40762478a | |||
d7032849d6 | |||
a20fa2a4c6 | |||
255892e12e | |||
96de7639cd | |||
17ece4bc7b | |||
73899f5905 | |||
373629b541 | |||
5caeed312c | |||
5e0ae80404 | |||
69d6ac533b | |||
73d1f11269 | |||
e8deb0be19 | |||
ca09c8ed26 | |||
3682d0a348 | |||
e2a40e07fc | |||
cfd1dffbcf | |||
55e378e2cb | |||
fb8186ac78 | |||
3ef58c0116 | |||
cc74fda339 | |||
7eedf74847 | |||
c75c6838d6 | |||
4b5a50d7fe | |||
922db1e08f | |||
e709eb0dbb | |||
3ce5b64420 | |||
a183971a7a | |||
5175073708 | |||
72f9dd39cf | |||
8bd58675e9 | |||
afd71e5ed8 | |||
d59562899b |
8
Makefile
8
Makefile
@ -1,13 +1,13 @@
|
||||
UTILS_SRC = utils/ft_is_in_quote.c utils/ft_strncpy.c utils/ft_strreplace.c utils/ft_strnchr.c utils/ft_split_quoted.c utils/ft_strshift.c utils/ft_quote_remover.c utils/ft_str_is_empty.c
|
||||
SRCS = ${UTILS_SRC} main.c file.c infile.c outfile.c heredoc.c syntatics.c cmd.c cmds.c env.c execution.c spacer.c env_fill.c
|
||||
UTILS_SRC = utils/ft_is_in_quote.c utils/ft_strncpy.c utils/ft_strreplace.c utils/ft_strnchr.c utils/ft_split_quoted.c utils/ft_strshift.c utils/ft_quote_remover.c utils/ft_str_is_empty.c utils/ft_atoi_check.c
|
||||
SRCS = ${UTILS_SRC} main.c file.c infile.c outfile.c heredoc.c syntatics.c cmd.c cmds.c env.c env2.c env3.c execution.c spacer.c env_fill.c builtins/echo.c builtins/pwd.c builtins/export.c builtins/env.c builtins/cd.c builtins/exit.c builtins/unset.c
|
||||
|
||||
OBJS = ${SRCS:.c=.o}
|
||||
|
||||
NAME = minishell
|
||||
|
||||
CC = gcc
|
||||
CC = clang
|
||||
|
||||
CFLAGS = -Werror -Wextra -g
|
||||
CFLAGS = -Werror -Wextra -Wall -g
|
||||
|
||||
LIBS = libftx/libftx.a
|
||||
|
||||
|
64
builtins/cd.c
Normal file
64
builtins/cd.c
Normal file
@ -0,0 +1,64 @@
|
||||
/* ************************************************************************** */
|
||||
/* */
|
||||
/* ::: :::::::: */
|
||||
/* cd.c :+: :+: :+: */
|
||||
/* +:+ +:+ +:+ */
|
||||
/* By: erey-bet <marvin@42.fr> +#+ +:+ +#+ */
|
||||
/* +#+#+#+#+#+ +#+ */
|
||||
/* Created: 2023/02/20 14:27:36 by erey-bet #+# #+# */
|
||||
/* Updated: 2023/02/28 13:37:18 by erey-bet ### ########.fr */
|
||||
/* */
|
||||
/* ************************************************************************** */
|
||||
|
||||
#include "../minishell.h"
|
||||
|
||||
int move_folder(char **args, int fd)
|
||||
{
|
||||
char *join;
|
||||
char *path;
|
||||
|
||||
if (args[1] != NULL)
|
||||
{
|
||||
write(2, "cd: too many argument", 22);
|
||||
return (1);
|
||||
}
|
||||
path = args[0];
|
||||
if (path[0] == '/' || ft_strncmp(path, "..", ft_strlen(path)) == 0)
|
||||
{
|
||||
if (chdir(path) == 0)
|
||||
return (0);
|
||||
write(2, "No suck file or directory", 25);
|
||||
return (1);
|
||||
}
|
||||
else
|
||||
{
|
||||
join = ft_strjoin("/", path);
|
||||
join = ft_strfjoin(get_pwd(fd), join);
|
||||
if (chdir(join) == 0)
|
||||
{
|
||||
free(join);
|
||||
return (0);
|
||||
}
|
||||
free(join);
|
||||
write(2, "No suck file or directory", 25);
|
||||
return (1);
|
||||
}
|
||||
}
|
||||
|
||||
/*int main(int argc, char *argv[]) {
|
||||
char cwd[PATH_MAX];
|
||||
if (getcwd(cwd, sizeof(cwd)) != NULL) {
|
||||
printf("%s\n", cwd);
|
||||
} else {
|
||||
perror("getcwd() error");
|
||||
return 1;
|
||||
}
|
||||
move_folder(argv[1], 1);
|
||||
if (getcwd(cwd, sizeof(cwd)) != NULL) {
|
||||
printf("%s\n", cwd);
|
||||
} else {
|
||||
perror("getcwd() error");
|
||||
return 1;
|
||||
}
|
||||
return 0;
|
||||
}*/
|
61
builtins/echo.c
Normal file
61
builtins/echo.c
Normal file
@ -0,0 +1,61 @@
|
||||
/* ************************************************************************** */
|
||||
/* */
|
||||
/* ::: :::::::: */
|
||||
/* echo.c :+: :+: :+: */
|
||||
/* +:+ +:+ +:+ */
|
||||
/* By: erey-bet <marvin@42.fr> +#+ +:+ +#+ */
|
||||
/* +#+#+#+#+#+ +#+ */
|
||||
/* Created: 2023/02/17 13:09:08 by erey-bet #+# #+# */
|
||||
/* Updated: 2023/02/22 13:23:16 by erey-bet ### ########.fr */
|
||||
/* */
|
||||
/* ************************************************************************** */
|
||||
|
||||
#include "../minishell.h"
|
||||
|
||||
int is_space(char c)
|
||||
{
|
||||
return (c == ' ' || c == '\f' || c == '\v' || c == '\t'
|
||||
|| c == '\r' || c == '\n');
|
||||
}
|
||||
|
||||
int check_argument(char *str, int *check)
|
||||
{
|
||||
int i;
|
||||
|
||||
i = -1;
|
||||
while (str[++i])
|
||||
if (str[i] != '-' && str[i] != 'n')
|
||||
return (1);
|
||||
if (ft_strnstr(str, "n", ft_strlen(str)))
|
||||
*check = 1;
|
||||
return (0);
|
||||
}
|
||||
|
||||
int echo(int fd, char **strs)
|
||||
{
|
||||
int check;
|
||||
int i;
|
||||
|
||||
check = 0;
|
||||
i = -1;
|
||||
while (strs[++i])
|
||||
{
|
||||
while (is_space(*strs[i]))
|
||||
strs[i]++;
|
||||
if (check == 1 || check_argument(strs[i], &check))
|
||||
{
|
||||
ft_putstr_fd(strs[i], fd);
|
||||
if (strs[i + 1] != NULL)
|
||||
write(fd, " ", 1);
|
||||
}
|
||||
}
|
||||
if (!check)
|
||||
write(fd, "\n", 1);
|
||||
return (0);
|
||||
}
|
||||
|
||||
/*int main(int argc, char *argv[])
|
||||
{
|
||||
echo(1, argv + 1);
|
||||
return (0);
|
||||
}*/
|
@ -6,21 +6,33 @@
|
||||
/* By: cchauvet <cchauvet@student.42angoulem +#+ +:+ +#+ */
|
||||
/* +#+#+#+#+#+ +#+ */
|
||||
/* Created: 2023/02/14 14:56:02 by cchauvet #+# #+# */
|
||||
/* Updated: 2023/02/14 14:58:40 by cchauvet ### ########.fr */
|
||||
/* Updated: 2023/02/23 16:50:01 by erey-bet ### ########.fr */
|
||||
/* */
|
||||
/* ************************************************************************** */
|
||||
|
||||
#include "../minishell.h"
|
||||
|
||||
int main(char **env)
|
||||
int print_env(t_list **env, int fd)
|
||||
{
|
||||
t_list **head;
|
||||
t_list *current;
|
||||
|
||||
while (current != NULL)
|
||||
current = *env;
|
||||
while (current->next != NULL)
|
||||
{
|
||||
ft_putendl_fd(1, current->content);
|
||||
ft_putstr_fd(((t_env *)(current->content))->key, fd);
|
||||
ft_putstr_fd("=", fd);
|
||||
ft_putstr_fd(((t_env *)(current->content))->value, fd);
|
||||
write(fd, "\n", 1);
|
||||
current = current->next;
|
||||
}
|
||||
return (0);
|
||||
}
|
||||
|
||||
/*int main(int argc, char *argv[], char **env)
|
||||
{
|
||||
t_list **be;
|
||||
|
||||
be = init_env(env);
|
||||
print_env(be, 1);
|
||||
return (0);
|
||||
}*/
|
47
builtins/exit.c
Normal file
47
builtins/exit.c
Normal file
@ -0,0 +1,47 @@
|
||||
/* ************************************************************************** */
|
||||
/* */
|
||||
/* ::: :::::::: */
|
||||
/* exit.c :+: :+: :+: */
|
||||
/* +:+ +:+ +:+ */
|
||||
/* By: erey-bet <marvin@42.fr> +#+ +:+ +#+ */
|
||||
/* +#+#+#+#+#+ +#+ */
|
||||
/* Created: 2023/02/24 10:17:59 by erey-bet #+# #+# */
|
||||
/* Updated: 2023/02/28 14:55:39 by erey-bet ### ########.fr */
|
||||
/* */
|
||||
/* ************************************************************************** */
|
||||
|
||||
#include "../minishell.h"
|
||||
|
||||
static int error(int err, char *reason, char *problem)
|
||||
{
|
||||
ft_putstr_fd("minishell: exit ", 2);
|
||||
if (problem != NULL)
|
||||
{
|
||||
ft_putstr_fd(problem, 2);
|
||||
write(2, ": ", 3);
|
||||
}
|
||||
ft_putstr_fd(reason, 2);
|
||||
return (err);
|
||||
}
|
||||
|
||||
int ft_exit(char **args)
|
||||
{
|
||||
int err;
|
||||
|
||||
if (args[0] == NULL)
|
||||
return (0);
|
||||
err = ft_atoi_check(args[0]);
|
||||
if (err == 1)
|
||||
return (error(err, "numeric argument required", args[0]));
|
||||
if (args[1] != NULL)
|
||||
return (error(-1, "too many arguments", NULL));
|
||||
if (err > 0)
|
||||
return(error(err, "numeric argument required", args[0]));
|
||||
return ((ft_atoi(args[0]) % 256 + 256) % 256);
|
||||
}
|
||||
|
||||
/*int main(int argc, char *argv[])
|
||||
{
|
||||
(void)argc;
|
||||
return(ft_exit(argv + 1, 1));
|
||||
}*/
|
94
builtins/export.c
Normal file
94
builtins/export.c
Normal file
@ -0,0 +1,94 @@
|
||||
/* ************************************************************************** */
|
||||
/* */
|
||||
/* ::: :::::::: */
|
||||
/* export.c :+: :+: :+: */
|
||||
/* +:+ +:+ +:+ */
|
||||
/* By: cchauvet <cchauvet@student.42angoulem +#+ +:+ +#+ */
|
||||
/* +#+#+#+#+#+ +#+ */
|
||||
/* Created: 2023/02/14 14:27:08 by cchauvet #+# #+# */
|
||||
/* Updated: 2023/02/28 14:37:38 by erey-bet ### ########.fr */
|
||||
/* */
|
||||
/* ************************************************************************** */
|
||||
|
||||
#include "../minishell.h"
|
||||
|
||||
static int error(char *str, int fd)
|
||||
{
|
||||
write(fd, "bash: export: `", 15);
|
||||
write(fd, str, ft_strlen(str));
|
||||
write(fd, "': not a valid identifier\n", 26);
|
||||
return (1);
|
||||
}
|
||||
|
||||
void print_export(t_list **env, int fd)
|
||||
{
|
||||
t_list *current;
|
||||
|
||||
current = *env;
|
||||
while (current->next != NULL)
|
||||
{
|
||||
write(fd, "declare -x ", 11);
|
||||
ft_putstr_fd(((t_env *)(current->content))->key, fd);
|
||||
ft_putstr_fd("=", fd);
|
||||
write(fd, "\"", 1);
|
||||
ft_putstr_fd(((t_env *)(current->content))->value, fd);
|
||||
write(fd, "\"\n", 2);
|
||||
current = current->next;
|
||||
}
|
||||
}
|
||||
|
||||
int add_export(t_list **env, char *args, int fd, int *err)
|
||||
{
|
||||
char *key;
|
||||
char *value;
|
||||
|
||||
key = args;
|
||||
value = "";
|
||||
if (ft_strchr(args, '=') != NULL)
|
||||
{
|
||||
key = ft_strndup(args, ft_strnchr(args, '='));
|
||||
if (key == NULL)
|
||||
return (1);
|
||||
if (ft_strlen(key) == 0)
|
||||
{
|
||||
error(args, fd);
|
||||
return (1);
|
||||
}
|
||||
value = ft_strchr(args, '=') + 1;
|
||||
}
|
||||
if (!possible_key(key))
|
||||
{
|
||||
*err = error(key, fd);
|
||||
return (1);
|
||||
}
|
||||
create_value_by_key_dup(key, value, env);
|
||||
return (0);
|
||||
}
|
||||
|
||||
int export(t_list **env, char **args, int fd)
|
||||
{
|
||||
int err;
|
||||
int i;
|
||||
|
||||
err = 0;
|
||||
if (args[0] == NULL)
|
||||
print_export(env, fd);
|
||||
else
|
||||
{
|
||||
i = -1;
|
||||
while (args[++i])
|
||||
if (add_export(env, args[i], fd, &err) == 1)
|
||||
err = 1;
|
||||
}
|
||||
return (err);
|
||||
}
|
||||
/*
|
||||
int main(int argc, char *argv[], char **env)
|
||||
{
|
||||
t_list **n_env;
|
||||
|
||||
(void)argc;
|
||||
n_env = init_env(env);
|
||||
export(n_env, argv + 1, 1);
|
||||
return (0);
|
||||
}*/
|
41
builtins/pwd.c
Normal file
41
builtins/pwd.c
Normal file
@ -0,0 +1,41 @@
|
||||
/* ************************************************************************** */
|
||||
/* */
|
||||
/* ::: :::::::: */
|
||||
/* pwd.c :+: :+: :+: */
|
||||
/* +:+ +:+ +:+ */
|
||||
/* By: erey-bet <marvin@42.fr> +#+ +:+ +#+ */
|
||||
/* +#+#+#+#+#+ +#+ */
|
||||
/* Created: 2023/02/17 16:09:11 by erey-bet #+# #+# */
|
||||
/* Updated: 2023/02/21 15:11:38 by cchauvet ### ########.fr */
|
||||
/* */
|
||||
/* ************************************************************************** */
|
||||
|
||||
#include "../minishell.h"
|
||||
|
||||
int pwd(int fd)
|
||||
{
|
||||
char path[PATH_MAX];
|
||||
|
||||
if (getcwd(path, sizeof(path)) != NULL)
|
||||
ft_putendl_fd(path, fd);
|
||||
else
|
||||
{
|
||||
ft_putendl_fd("Error getcwd", fd);
|
||||
return (1);
|
||||
}
|
||||
return (0);
|
||||
}
|
||||
|
||||
char *get_pwd(int fd)
|
||||
{
|
||||
char *str;
|
||||
|
||||
str = ft_calloc(PATH_MAX, sizeof(char *));
|
||||
if (getcwd(str, PATH_MAX) != NULL)
|
||||
return (str);
|
||||
else
|
||||
{
|
||||
ft_putendl_fd("Error getcwd", fd);
|
||||
return (NULL);
|
||||
}
|
||||
}
|
35
builtins/unset.c
Normal file
35
builtins/unset.c
Normal file
@ -0,0 +1,35 @@
|
||||
/* ************************************************************************** */
|
||||
/* */
|
||||
/* ::: :::::::: */
|
||||
/* unset.c :+: :+: :+: */
|
||||
/* +:+ +:+ +:+ */
|
||||
/* By: erey-bet <marvin@42.fr> +#+ +:+ +#+ */
|
||||
/* +#+#+#+#+#+ +#+ */
|
||||
/* Created: 2023/02/22 13:28:27 by erey-bet #+# #+# */
|
||||
/* Updated: 2023/02/23 15:49:21 by erey-bet ### ########.fr */
|
||||
/* */
|
||||
/* ************************************************************************** */
|
||||
|
||||
#include "../minishell.h"
|
||||
|
||||
int error(char *str, int fd)
|
||||
{
|
||||
write(fd, "bash: unset: `", 14);
|
||||
write(fd, str, ft_strlen(str));
|
||||
write(fd, "': not a valid identifier", 25);
|
||||
return (1);
|
||||
}
|
||||
|
||||
int unset(t_list **env, char **args, int fd)
|
||||
{
|
||||
int i;
|
||||
int err;
|
||||
|
||||
i = -1;
|
||||
err = 0;
|
||||
while (args[++i])
|
||||
if (delete_by_key(args[i], env))
|
||||
if (!possible_key(args[i]))
|
||||
err = error(args[i], fd);
|
||||
return (err);
|
||||
}
|
13
cmd.c
13
cmd.c
@ -6,7 +6,7 @@
|
||||
/* By: cchauvet <cchauvet@student.42angoulem +#+ +:+ +#+ */
|
||||
/* +#+#+#+#+#+ +#+ */
|
||||
/* Created: 2023/02/15 14:18:21 by cchauvet #+# #+# */
|
||||
/* Updated: 2023/02/16 18:25:14 by cchauvet ### ########.fr */
|
||||
/* Updated: 2023/02/21 22:27:28 by cchauvet ### ########.fr */
|
||||
/* */
|
||||
/* ************************************************************************** */
|
||||
|
||||
@ -22,10 +22,14 @@ void ft_cmddel(void *ptr)
|
||||
ft_freer_tab_ultimate(1, content->args);
|
||||
if (content->executable != NULL)
|
||||
free(content->executable);
|
||||
if (content->fd_in > 2)
|
||||
close(content->fd_in);
|
||||
if (content->fd_out > 2)
|
||||
close(content->fd_out);
|
||||
free(content);
|
||||
}
|
||||
|
||||
int ft_cmd_filler(t_list *element, char **args, t_list **env)
|
||||
int ft_cmd_filler(t_data *data, t_list *element, char **args)
|
||||
{
|
||||
t_cmd *content;
|
||||
char *temp;
|
||||
@ -37,12 +41,9 @@ int ft_cmd_filler(t_list *element, char **args, t_list **env)
|
||||
i = 0;
|
||||
while (args[i] != NULL)
|
||||
{
|
||||
temp = ft_env_filler(env, args[i]);
|
||||
temp = ft_env_filler(data, args[i]);
|
||||
if (temp == NULL)
|
||||
{
|
||||
ft_eprintf("minishell: malloc failed\n");
|
||||
return (1);
|
||||
}
|
||||
free(args[i]);
|
||||
args[i] = temp;
|
||||
ft_quote_remover(temp);
|
||||
|
22
cmds.c
22
cmds.c
@ -19,6 +19,8 @@ static int ft_cmds_init(t_list **cmds, size_t len)
|
||||
t_list *current;
|
||||
size_t i;
|
||||
|
||||
*cmds = NULL;
|
||||
if (len > 0)
|
||||
*cmds = malloc(sizeof(t_list));
|
||||
current = *cmds;
|
||||
i = 0;
|
||||
@ -51,29 +53,27 @@ static int ft_cmds_init(t_list **cmds, size_t len)
|
||||
|
||||
static int ft_cmds_prep(t_list **cmds, const char *line, int infile, int outfile)
|
||||
{
|
||||
size_t len;
|
||||
t_cmd *cmd;
|
||||
t_list *current;
|
||||
|
||||
len = ft_seglen_quoted(line, '|');
|
||||
if (len == 0)
|
||||
return (0);
|
||||
if (ft_cmds_init(cmds, ft_seglen_quoted(line, '|')))
|
||||
{
|
||||
free(cmds);
|
||||
return (1);
|
||||
}
|
||||
cmd = (t_cmd *)(*cmds)->content;
|
||||
cmd->fd_in = infile;
|
||||
if (*cmds == NULL)
|
||||
return (0);
|
||||
current = *cmds;
|
||||
cmd = current->content;
|
||||
cmd->fd_in = infile;
|
||||
while (current->next != NULL)
|
||||
current = current->next;
|
||||
cmd = (t_cmd *) current->content;
|
||||
cmd = current->content;
|
||||
cmd->fd_out = outfile;
|
||||
return (0);
|
||||
}
|
||||
|
||||
static int ft_cmds_fill(t_list **cmds, t_list **env, const char *line)
|
||||
static int ft_cmds_fill(t_data *data, t_list **cmds, const char *line)
|
||||
{
|
||||
char **tab;
|
||||
char **args;
|
||||
@ -88,7 +88,7 @@ static int ft_cmds_fill(t_list **cmds, t_list **env, const char *line)
|
||||
while (tab[i] != NULL)
|
||||
{
|
||||
args = ft_split_quoted(tab[i], ' ');
|
||||
if (ft_cmd_filler(current, args, env) == 1)
|
||||
if (ft_cmd_filler(data, current, args) == 1)
|
||||
{
|
||||
ft_lstclear(cmds, ft_cmddel);
|
||||
ft_freer_tab_ultimate(2, args, tab);
|
||||
@ -101,14 +101,14 @@ static int ft_cmds_fill(t_list **cmds, t_list **env, const char *line)
|
||||
return (0);
|
||||
}
|
||||
|
||||
t_list **ft_parse_cmds(char *line, t_list **env, int infile, int outfile)
|
||||
t_list **ft_parse_cmds(t_data *data, char *line, int infile, int outfile)
|
||||
{
|
||||
t_list **cmds;
|
||||
|
||||
cmds = malloc(sizeof(t_list *));
|
||||
if (ft_cmds_prep(cmds, line, infile, outfile) == 1)
|
||||
return (NULL);
|
||||
if (ft_cmds_fill(cmds, env, line) == 1)
|
||||
if (ft_cmds_fill(data, cmds, line) == 1)
|
||||
return (NULL);
|
||||
return (cmds);
|
||||
}
|
||||
|
169
env.c
169
env.c
@ -6,154 +6,20 @@
|
||||
/* By: erey-bet <marvin@42.fr> +#+ +:+ +#+ */
|
||||
/* +#+#+#+#+#+ +#+ */
|
||||
/* Created: 2023/02/02 14:39:56 by erey-bet #+# #+# */
|
||||
/* Updated: 2023/02/17 13:05:29 by erey-bet ### ########.fr */
|
||||
/* Updated: 2023/02/23 13:34:41 by erey-bet ### ########.fr */
|
||||
/* */
|
||||
/* ************************************************************************** */
|
||||
|
||||
#include "minishell.h"
|
||||
|
||||
int get_index(char *s, char c)
|
||||
{
|
||||
int i;
|
||||
|
||||
i = -1;
|
||||
while (s[++i])
|
||||
if (s[i] == c)
|
||||
return (i);
|
||||
return (-1);
|
||||
}
|
||||
|
||||
void print_export(t_list **head, int fd)
|
||||
{
|
||||
t_list *current;
|
||||
|
||||
current = *head;
|
||||
while (current->next != NULL)
|
||||
{
|
||||
write(fd, "declare -x ", 11);
|
||||
ft_putstr_fd(((t_env*)(current->content))->key, fd);
|
||||
ft_putstr_fd("=", fd);
|
||||
write(fd, "\"", 1);
|
||||
ft_putstr_fd(((t_env*)(current->content))->value, fd);
|
||||
write(fd, "\"\n", 2);
|
||||
current = current->next;
|
||||
}
|
||||
}
|
||||
|
||||
void print_env(t_list **head, int fd)
|
||||
{
|
||||
t_list *current;
|
||||
|
||||
current = *head;
|
||||
while (current->next != NULL)
|
||||
{
|
||||
ft_putstr_fd(((t_env*)(current->content))->key, fd);
|
||||
ft_putstr_fd("=", fd);
|
||||
ft_putstr_fd(((t_env*)(current->content))->value, fd);
|
||||
write(fd, "\n", 1);
|
||||
current = current->next;
|
||||
}
|
||||
}
|
||||
|
||||
int strcmp_alphabet(char *s1, char *s2)
|
||||
{
|
||||
int i;
|
||||
|
||||
if (!s1 || !s2)
|
||||
return (-2);
|
||||
i = 0;
|
||||
while (s1[i] && s2[i])
|
||||
{
|
||||
if (s1[i] < s2[i])
|
||||
return (0);
|
||||
else if (s1[i] > s2[i])
|
||||
return (1);
|
||||
i++;
|
||||
}
|
||||
return (-1);
|
||||
}
|
||||
|
||||
void ft_double_swap(void *a, void *b)
|
||||
{
|
||||
void *c;
|
||||
|
||||
c = a;
|
||||
a = b;
|
||||
b = c;
|
||||
}
|
||||
|
||||
void exchange(void *a, void *b, void *c)
|
||||
{
|
||||
void *d;
|
||||
|
||||
d = a;
|
||||
a = b;
|
||||
b = c;
|
||||
c = d;
|
||||
}
|
||||
|
||||
char *get_value(char *str)
|
||||
{
|
||||
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);
|
||||
}
|
||||
|
||||
void env_del(void *ptr)
|
||||
{
|
||||
t_env *content;
|
||||
|
||||
content = ptr;
|
||||
free(content->key);
|
||||
free(content->value);
|
||||
free(content);
|
||||
}
|
||||
|
||||
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);
|
||||
}
|
||||
|
||||
void swap_env_3(void **a, void **b, void **c)
|
||||
{
|
||||
void *d;
|
||||
|
||||
d = *a;
|
||||
*a = *b;
|
||||
*b = *c;
|
||||
*c = d;
|
||||
}
|
||||
|
||||
void swap_env(void **a, void **b)
|
||||
{
|
||||
void *c;
|
||||
|
||||
c = *a;
|
||||
*a = *b;
|
||||
*b = c;
|
||||
}
|
||||
|
||||
void add_sort(t_list **head, t_env *var)
|
||||
{
|
||||
t_list *current;
|
||||
t_env *last;
|
||||
|
||||
current = *head;
|
||||
while (current->next != NULL && strcmp_alphabet(var->key, ((t_env*)(current->content))->key) != 0)
|
||||
while (current->next != NULL
|
||||
&& ft_strcmp(var->key, ((t_env *)(current->content))->key) > 0)
|
||||
current = current->next;
|
||||
if (current->content == NULL)
|
||||
current->content = var;
|
||||
@ -182,7 +48,7 @@ char *get_value_by_key(char *key, t_list **head)
|
||||
return (((t_env *)current->content)->value);
|
||||
current = current->next;
|
||||
}
|
||||
return (NULL);
|
||||
return ("");
|
||||
}
|
||||
|
||||
int set_value_by_key(char *key, char *value, t_list **head)
|
||||
@ -218,25 +84,6 @@ int create_value_by_key(char *key, char *value, t_list **head)
|
||||
return (0);
|
||||
}
|
||||
|
||||
char **env_to_strs(t_list **head)
|
||||
{
|
||||
t_list *current;
|
||||
t_env *content;
|
||||
char **env;
|
||||
int i;
|
||||
|
||||
current = *head;
|
||||
env = ft_calloc(ft_lstsize(*head), sizeof(char *));
|
||||
i = 0;
|
||||
while (current->content)
|
||||
{
|
||||
content = current->content;
|
||||
env[i++] = ft_strmerger(3, content->key, "=", content->value);
|
||||
current = current->next;
|
||||
}
|
||||
return (env);
|
||||
}
|
||||
|
||||
t_list **init_env(char **env)
|
||||
{
|
||||
t_list **head;
|
||||
@ -264,9 +111,11 @@ t_list **init_env(char **env)
|
||||
|
||||
/*int main(int argc, char *argv[], char **env)
|
||||
{
|
||||
t_list **new;
|
||||
t_list **n_env;
|
||||
|
||||
n_env = init_env(env);
|
||||
delete_by_key("SSH_AUTH_SOCK", n_env);
|
||||
print_env(n_env, 1);
|
||||
|
||||
new = init_env(env);
|
||||
ft_printf("%S", env_to_strs(new));
|
||||
return (0);
|
||||
}*/
|
||||
|
77
env2.c
Normal file
77
env2.c
Normal file
@ -0,0 +1,77 @@
|
||||
/* */
|
||||
/* ::: :::::::: */
|
||||
/* env2.c :+: :+: :+: */
|
||||
/* +:+ +:+ +:+ */
|
||||
/* By: erey-bet <marvin@42.fr> +#+ +:+ +#+ */
|
||||
/* +#+#+#+#+#+ +#+ */
|
||||
/* Created: 2023/02/17 17:22:01 by erey-bet #+# #+# */
|
||||
/* Updated: 2023/02/17 17:24:57 by erey-bet ### ########.fr */
|
||||
/* */
|
||||
/* ************************************************************************** */
|
||||
|
||||
#include "libftx/libftx.h"
|
||||
#include "minishell.h"
|
||||
|
||||
int get_index(char *s, char c)
|
||||
{
|
||||
int i;
|
||||
|
||||
i = -1;
|
||||
while (s[++i])
|
||||
if (s[i] == c)
|
||||
return (i);
|
||||
return (-1);
|
||||
}
|
||||
|
||||
void swap_env_3(void **a, void **b, void **c)
|
||||
{
|
||||
void *d;
|
||||
|
||||
d = *a;
|
||||
*a = *b;
|
||||
*b = *c;
|
||||
*c = d;
|
||||
}
|
||||
|
||||
void swap_env(void **a, void **b)
|
||||
{
|
||||
void *c;
|
||||
|
||||
c = *a;
|
||||
*a = *b;
|
||||
*b = c;
|
||||
}
|
||||
|
||||
void env_del(void *ptr)
|
||||
{
|
||||
t_env *content;
|
||||
|
||||
if (ptr == NULL)
|
||||
return ;
|
||||
content = ptr;
|
||||
if (content->key != NULL)
|
||||
free(content->key);
|
||||
if (content->key != NULL)
|
||||
free(content->value);
|
||||
if (content != NULL)
|
||||
free(content);
|
||||
}
|
||||
|
||||
char **env_to_strs(t_list **head)
|
||||
{
|
||||
t_list *current;
|
||||
t_env *content;
|
||||
char **env;
|
||||
int i;
|
||||
|
||||
current = *head;
|
||||
env = ft_calloc(ft_lstsize(*head), sizeof(char *));
|
||||
i = 0;
|
||||
while (current->content)
|
||||
{
|
||||
content = current->content;
|
||||
env[i++] = ft_strmerger(3, content->key, "=", content->value);
|
||||
current = current->next;
|
||||
}
|
||||
return (env);
|
||||
}
|
98
env3.c
Normal file
98
env3.c
Normal file
@ -0,0 +1,98 @@
|
||||
/* ************************************************************************** */
|
||||
/* */
|
||||
/* ::: :::::::: */
|
||||
/* env3.c :+: :+: :+: */
|
||||
/* +:+ +:+ +:+ */
|
||||
/* By: erey-bet <marvin@42.fr> +#+ +:+ +#+ */
|
||||
/* +#+#+#+#+#+ +#+ */
|
||||
/* Created: 2023/02/17 17:25:09 by erey-bet #+# #+# */
|
||||
/* Updated: 2023/02/28 12:46:33 by erey-bet ### ########.fr */
|
||||
/* */
|
||||
/* ************************************************************************** */
|
||||
|
||||
#include "libftx/libftx.h"
|
||||
#include "minishell.h"
|
||||
|
||||
char *get_value(char *str)
|
||||
{
|
||||
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);
|
||||
}
|
||||
|
||||
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);
|
||||
}
|
||||
|
||||
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;
|
||||
return (0);
|
||||
}
|
||||
last = current;
|
||||
current = current->next;
|
||||
}
|
||||
return (1);
|
||||
}
|
||||
|
||||
int possible_key(char *key)
|
||||
{
|
||||
int i;
|
||||
|
||||
i = -1;
|
||||
if (ft_isdigit(key[i + 1]))
|
||||
return (0);
|
||||
while (key[++i])
|
||||
if (!ft_isalnum(key[i]) && key[i] != '_')
|
||||
return (0);
|
||||
return (1);
|
||||
}
|
97
env_fill.c
97
env_fill.c
@ -6,37 +6,83 @@
|
||||
/* By: cchauvet <cchauvet@student.42angoulem +#+ +:+ +#+ */
|
||||
/* +#+#+#+#+#+ +#+ */
|
||||
/* Created: 2023/02/16 16:29:08 by cchauvet #+# #+# */
|
||||
/* Updated: 2023/02/17 13:41:51 by cchauvet ### ########.fr */
|
||||
/* Updated: 2023/02/20 15:39:28 by starnakin ### ########.fr */
|
||||
/* */
|
||||
/* ************************************************************************** */
|
||||
|
||||
#include "libftx/libftx.h"
|
||||
#include "minishell.h"
|
||||
#include "utils/utils.h"
|
||||
|
||||
static char *ft_get_value(t_list **env, const char *str, size_t start,
|
||||
size_t stop)
|
||||
int ft_gen_exit_code_var(t_data *data)
|
||||
{
|
||||
char *str;
|
||||
|
||||
if (data->exit_code_str != NULL)
|
||||
free(data->exit_code_str);
|
||||
str = ft_itoa(data->exit_code);
|
||||
if (str == NULL)
|
||||
{
|
||||
ft_printf("minishell: malloc failed");
|
||||
return (1);
|
||||
}
|
||||
data->exit_code_str = str;
|
||||
return (0);
|
||||
}
|
||||
|
||||
static char *ft_get_value(t_data *data, char *key)
|
||||
{
|
||||
char *key;
|
||||
char *value;
|
||||
|
||||
key = ft_strndup(str + start, stop);
|
||||
if (key == NULL)
|
||||
{
|
||||
ft_eprintf("minishell: malloc failed\n");
|
||||
return (NULL);
|
||||
}
|
||||
value = get_value_by_key(key, env);
|
||||
if (key[0] == '\0')
|
||||
return ("$");
|
||||
if (ft_strcmp("?", key) == 0)
|
||||
return (data->exit_code_str);
|
||||
value = get_value_by_key(key, data->env);
|
||||
if (value == NULL)
|
||||
value = "";
|
||||
free(key);
|
||||
return (value);
|
||||
}
|
||||
|
||||
char *ft_env_filler(t_list **env, const char *str)
|
||||
static char *ft_get_key(char *str)
|
||||
{
|
||||
char *key;
|
||||
size_t i;
|
||||
|
||||
i = 1;
|
||||
if (ft_strncmp(str, "$$", 2) == 0)
|
||||
{
|
||||
key = ft_strdup("$");
|
||||
if (key == NULL)
|
||||
ft_eprintf("minishell: malloc failed\n");
|
||||
return (key);
|
||||
}
|
||||
if (str[i] == ' ' || str[i] == '\0')
|
||||
{
|
||||
key = ft_strdup("");
|
||||
if (key == NULL)
|
||||
ft_eprintf("minishell: malloc failed\n");
|
||||
return (key);
|
||||
}
|
||||
if (str[i] == '?')
|
||||
{
|
||||
key = ft_strdup("?");
|
||||
if (key == NULL)
|
||||
ft_eprintf("minishell: malloc failed\n");
|
||||
return (key);
|
||||
}
|
||||
while (str[i] != '\0' && str[i] != '$' && str[i] != ' '
|
||||
&& str[i] != '"')
|
||||
i++;
|
||||
key = ft_strndup(str + 1, i - 1);
|
||||
if (key == NULL)
|
||||
ft_eprintf("minishell: malloc failed\n");
|
||||
return (key);
|
||||
}
|
||||
|
||||
char *ft_env_filler(t_data *data, const char *str)
|
||||
{
|
||||
size_t i;
|
||||
size_t y;
|
||||
char *key;
|
||||
char *out;
|
||||
char *temp;
|
||||
char *value;
|
||||
@ -54,13 +100,22 @@ char *ft_env_filler(t_list **env, const char *str)
|
||||
i++;
|
||||
while (out[i] == '$')
|
||||
{
|
||||
y = i + 1;
|
||||
while (out[y] != '\0' && out[y] != '$' && out[y] != ' ')
|
||||
y++;
|
||||
value = ft_get_value(env, out, i + 1, y - i - 1);
|
||||
if (value == NULL)
|
||||
key = ft_get_key(out + i);
|
||||
if (key == NULL)
|
||||
{
|
||||
free(out);
|
||||
return (NULL);
|
||||
temp = ft_strreplace(out, value, i, y);
|
||||
}
|
||||
value = ft_get_value(data, key);
|
||||
if (value == NULL)
|
||||
{
|
||||
free(key);
|
||||
free(out);
|
||||
return (NULL);
|
||||
}
|
||||
temp = ft_strreplace(out, value, i, ft_strlen(key) + 1 + i);
|
||||
free(key);
|
||||
i = i + ft_strlen(value);
|
||||
free(out);
|
||||
if (temp == NULL)
|
||||
{
|
||||
|
90
execution.c
90
execution.c
@ -1,15 +1,28 @@
|
||||
/* ************************************************************************** */
|
||||
/* */
|
||||
/* ::: :::::::: */
|
||||
/* execution.c :+: :+: :+: */
|
||||
/* +:+ +:+ +:+ */
|
||||
/* By: cchauvet <cchauvet@student.42angoulem +#+ +:+ +#+ */
|
||||
/* +#+#+#+#+#+ +#+ */
|
||||
/* Created: 2023/02/21 12:45:16 by cchauvet #+# #+# */
|
||||
/* Updated: 2023/02/28 14:56:05 by erey-bet ### ########.fr */
|
||||
/* */
|
||||
/* ************************************************************************** */
|
||||
|
||||
#include "libftx/libftx.h"
|
||||
#include "minishell.h"
|
||||
#include "utils/utils.h"
|
||||
#include <unistd.h>
|
||||
|
||||
static char *ft_get_executable_path(char *executable_name, t_list **env)
|
||||
static char *ft_get_executable_path(t_data *data, char *executable_name)
|
||||
{
|
||||
char *path;
|
||||
char *temp;
|
||||
char **tab;
|
||||
size_t i;
|
||||
|
||||
if (executable_name == NULL)
|
||||
return (NULL);
|
||||
path = NULL;
|
||||
if (executable_name[0] == '.' || executable_name[0] == '/')
|
||||
{
|
||||
@ -27,7 +40,7 @@ static char *ft_get_executable_path(char *executable_name, t_list **env)
|
||||
}
|
||||
else
|
||||
{
|
||||
tab = ft_split(get_value_by_key("PATH", env), ':');
|
||||
tab = ft_split(get_value_by_key("PATH", data->env), ':');
|
||||
if (tab == NULL)
|
||||
return (NULL);
|
||||
i = 0;
|
||||
@ -51,18 +64,20 @@ static char *ft_get_executable_path(char *executable_name, t_list **env)
|
||||
if (path == NULL)
|
||||
{
|
||||
ft_eprintf("%s: command not found\n", executable_name);
|
||||
data->exit_code = 127;
|
||||
}
|
||||
ft_freer_tab_ultimate(1, tab);
|
||||
}
|
||||
return (path);
|
||||
}
|
||||
|
||||
static int ft_excutor(t_cmd *cmd, t_list **env)
|
||||
static int ft_executor(t_data *data, t_cmd *cmd)
|
||||
{
|
||||
int pid;
|
||||
int return_value;
|
||||
char **tab;
|
||||
|
||||
return_value = -1;
|
||||
if (cmd->fd_in == -1 || cmd->fd_out == -1)
|
||||
return (1);
|
||||
pid = fork();
|
||||
@ -70,23 +85,67 @@ static int ft_excutor(t_cmd *cmd, t_list **env)
|
||||
return (1);
|
||||
if (pid == 0)
|
||||
{
|
||||
tab = env_to_strs(env);
|
||||
tab = env_to_strs(data->env);
|
||||
if (tab == NULL)
|
||||
return (1);
|
||||
tab = NULL;
|
||||
dup2(cmd->fd_out, 1);
|
||||
dup2(cmd->fd_in, 0);
|
||||
if (cmd->fd_out > 2)
|
||||
close(cmd->fd_out);
|
||||
if (cmd->fd_in > 2)
|
||||
close(cmd->fd_in);
|
||||
execve(cmd->executable, cmd->args, tab);
|
||||
}
|
||||
else
|
||||
waitpid(pid, &return_value, 0);
|
||||
data->exit_code = return_value;
|
||||
return (return_value);
|
||||
}
|
||||
|
||||
int ft_cmds_executor(t_list **cmds, t_list **env)
|
||||
static int ft_own_cmd(t_data *data, t_cmd *cmd)
|
||||
{
|
||||
int return_code;
|
||||
int exit_code;
|
||||
|
||||
return_code = -1;
|
||||
if (ft_strcmp(cmd->executable, "pwd") == 0)
|
||||
return_code = pwd(cmd->fd_out);
|
||||
else if (ft_strcmp(cmd->executable, "env") == 0)
|
||||
return_code = print_env(data->env, cmd->fd_out);
|
||||
else if (ft_strcmp(cmd->executable, "export") == 0)
|
||||
return_code = (export(data->env,cmd->args + 1, cmd->fd_out));
|
||||
else if (ft_strcmp(cmd->executable, "cd") == 0)
|
||||
return_code = (move_folder(cmd->args + 1, cmd->fd_out));
|
||||
if (ft_strcmp(cmd->executable, "unset") == 0)
|
||||
return_code = (unset(data->env, cmd->args, cmd->fd_out));
|
||||
else if (ft_strcmp(cmd->executable, "echo") == 0)
|
||||
return_code = (echo(cmd->fd_out, cmd->args + 1));
|
||||
else if (ft_strcmp(cmd->executable, "exit") == 0)
|
||||
{
|
||||
exit_code = ft_exit(cmd->args + 1);
|
||||
if (exit_code > -1)
|
||||
{
|
||||
data->exit_code = exit_code;
|
||||
return_code = -2;
|
||||
}
|
||||
else
|
||||
{
|
||||
data->exit_code = 1;
|
||||
return_code = -3;
|
||||
}
|
||||
}
|
||||
if (return_code >= 0)
|
||||
data->exit_code = return_code;
|
||||
if (return_code != -1)
|
||||
cmd->executable = NULL;
|
||||
return (return_code);
|
||||
}
|
||||
|
||||
int ft_cmds_executor(t_data *data, t_list **cmds)
|
||||
{
|
||||
t_cmd *content;
|
||||
t_list *current;
|
||||
int exit_code;
|
||||
int fds[2];
|
||||
|
||||
current = *cmds;
|
||||
@ -103,12 +162,21 @@ int ft_cmds_executor(t_list **cmds, t_list **env)
|
||||
content->fd_out = fds[1];
|
||||
((t_cmd *) current->next->content)->fd_in = fds[0];
|
||||
}
|
||||
content->executable = ft_get_executable_path(content->executable, env);
|
||||
exit_code = ft_own_cmd(data, content);
|
||||
if (exit_code == -1)
|
||||
{
|
||||
content->executable = ft_get_executable_path(data,
|
||||
content->executable);
|
||||
if (content->executable != NULL)
|
||||
ft_excutor(content, env);
|
||||
if (content->fd_in != 0)
|
||||
exit_code = ft_executor(data, content);
|
||||
}
|
||||
else if (exit_code == -2)
|
||||
return (1);
|
||||
if (ft_gen_exit_code_var(data))
|
||||
return (1);
|
||||
if (content->fd_in > 2)
|
||||
close(content->fd_in);
|
||||
if (content->fd_out != 1 && content->fd_out != 2)
|
||||
if (content->fd_out > 2)
|
||||
close(content->fd_out);
|
||||
current = current->next;
|
||||
}
|
||||
|
33
file.c
33
file.c
@ -22,15 +22,16 @@ int ft_file_is_readable(const char *path)
|
||||
if (fd == -1)
|
||||
{
|
||||
ft_eprintf("minishell: %s: No such file or directory\n", path);
|
||||
return (-1);
|
||||
return (0);
|
||||
}
|
||||
readable = read(fd, "", 0);
|
||||
if (readable == -1)
|
||||
{
|
||||
ft_eprintf("minishell: %s: Permission denied\n", path);
|
||||
return (-1);
|
||||
return (0);
|
||||
}
|
||||
return (fd);
|
||||
close(fd);
|
||||
return (1);
|
||||
}
|
||||
|
||||
int ft_file_is_writable(const char *path)
|
||||
@ -38,37 +39,17 @@ int ft_file_is_writable(const char *path)
|
||||
int writeable;
|
||||
int fd;
|
||||
|
||||
fd = open(path, O_WRONLY | O_CREAT | O_TRUNC, 0644);
|
||||
fd = open(path, O_WRONLY | O_CREAT, 0644);
|
||||
if (fd == -1)
|
||||
{
|
||||
ft_eprintf("minishell: %s: Permission denied\n", path);
|
||||
return (-1);
|
||||
return (0);
|
||||
}
|
||||
writeable = write(fd, "", 0);
|
||||
if (writeable == -1)
|
||||
{
|
||||
ft_eprintf("minishell: %s: Permission denied\n", path);
|
||||
return (-1);
|
||||
}
|
||||
return (fd);
|
||||
}
|
||||
|
||||
int ft_file_is_appendable(const char *path)
|
||||
{
|
||||
int writeable;
|
||||
int fd;
|
||||
|
||||
fd = open(path, O_WRONLY | O_CREAT | O_APPEND, 0644);
|
||||
if (fd == -1)
|
||||
{
|
||||
ft_eprintf("minishell: %s: Permission denied\n", path);
|
||||
return (-1);
|
||||
}
|
||||
writeable = write(fd, "", 0);
|
||||
if (writeable == -1)
|
||||
{
|
||||
ft_eprintf("minishell: %s: Permission denied\n", path);
|
||||
return (-1);
|
||||
return (0);
|
||||
}
|
||||
return (fd);
|
||||
}
|
||||
|
38
heredoc.c
38
heredoc.c
@ -12,25 +12,49 @@
|
||||
|
||||
#include "libftx/libftx.h"
|
||||
#include "minishell.h"
|
||||
#include <stdlib.h>
|
||||
#include <unistd.h>
|
||||
|
||||
int ft_heredoc(char *stop)
|
||||
int *ft_get_heredoc()
|
||||
{
|
||||
int fds[2];
|
||||
char *line;
|
||||
static int heredoc = -1;
|
||||
|
||||
pipe(fds);
|
||||
line = readline("> ");
|
||||
return (&heredoc);
|
||||
}
|
||||
|
||||
int ft_heredoc(t_data *data, char *stop)
|
||||
{
|
||||
char *line;
|
||||
char *line_clean;
|
||||
int fds[2];
|
||||
|
||||
if (pipe(fds) == -1)
|
||||
return (-2);
|
||||
*ft_get_heredoc() = dup(0);
|
||||
ft_printf("> ");
|
||||
line = get_next_line(*ft_get_heredoc());
|
||||
while (line != NULL)
|
||||
{
|
||||
line[ft_strlen(line) - 1] = '\0';
|
||||
if (ft_strcmp(line, stop) == 0)
|
||||
{
|
||||
free(line);
|
||||
break ;
|
||||
}
|
||||
ft_putendl_fd(line, fds[1]);
|
||||
line_clean = ft_env_filler(data, line);
|
||||
free(line);
|
||||
line = readline("> ");
|
||||
ft_putendl_fd(line_clean, fds[1]);
|
||||
free(line_clean);
|
||||
ft_printf("> ");
|
||||
line = get_next_line(*ft_get_heredoc());
|
||||
if (line == NULL && *ft_get_heredoc() == -1)
|
||||
{
|
||||
close(fds[0]);
|
||||
close(fds[1]);
|
||||
return (-2);
|
||||
}
|
||||
}
|
||||
close(fds[1]);
|
||||
*ft_get_heredoc() = -1;
|
||||
return (fds[0]);
|
||||
}
|
||||
|
67
infile.c
67
infile.c
@ -6,18 +6,18 @@
|
||||
/* By: cchauvet <cchauvet@student.42angoulem +#+ +:+ +#+ */
|
||||
/* +#+#+#+#+#+ +#+ */
|
||||
/* Created: 2023/02/15 17:52:10 by cchauvet #+# #+# */
|
||||
/* Updated: 2023/02/17 13:19:09 by cchauvet ### ########.fr */
|
||||
/* Updated: 2023/02/20 13:05:43 by starnakin ### ########.fr */
|
||||
/* */
|
||||
/* ************************************************************************** */
|
||||
|
||||
#include "libftx/libftx.h"
|
||||
#include "minishell.h"
|
||||
#include "utils/utils.h"
|
||||
|
||||
static int ft_infile_is_valid(const char *line)
|
||||
static int ft_infile_is_valid(t_data *data, const char *line)
|
||||
{
|
||||
char **tab;
|
||||
size_t i;
|
||||
char *path;
|
||||
ssize_t i;
|
||||
int return_code;
|
||||
|
||||
tab = ft_split_quoted(line, ' ');
|
||||
if (tab == NULL)
|
||||
@ -27,24 +27,42 @@ static int ft_infile_is_valid(const char *line)
|
||||
}
|
||||
if (tab[0] == NULL)
|
||||
return (1);
|
||||
i = 0;
|
||||
while (tab[i + 1] != NULL)
|
||||
i++;
|
||||
return_code = 1;
|
||||
i = -1;
|
||||
while (tab[++i] != NULL && return_code == 1)
|
||||
{
|
||||
if (tab[i][0] == '<')
|
||||
{
|
||||
if (ft_strcmp(tab[i], "<") == 0)
|
||||
{
|
||||
path = ft_env_filler(data, tab[i + 1]);
|
||||
if (path == NULL)
|
||||
return_code = 0;
|
||||
ft_quote_remover(path);
|
||||
free(tab[i + 1]);
|
||||
tab[i + 1] = path;
|
||||
if (ft_file_is_readable(tab[i + 1]) == 0)
|
||||
{
|
||||
data->exit_code = 1;
|
||||
return_code = -1;
|
||||
}
|
||||
}
|
||||
if (ft_contain_only_str(tab[i + 1], "| <>"))
|
||||
return_code = 0;
|
||||
}
|
||||
}
|
||||
if (return_code == 0)
|
||||
ft_eprintf("minishell: %s: must be followed by an infile\n", tab[i]);
|
||||
ft_freer_tab_ultimate(1, tab);
|
||||
return (0);
|
||||
}
|
||||
ft_freer_tab_ultimate(1, tab);
|
||||
return (1);
|
||||
return (return_code);
|
||||
}
|
||||
|
||||
static int ft_get_infile(const char *line)
|
||||
static int ft_get_infile(t_data *data, const char *line)
|
||||
{
|
||||
size_t i;
|
||||
int fd;
|
||||
char **tab;
|
||||
char *path;
|
||||
|
||||
tab = ft_split_quoted(line, ' ');
|
||||
if (tab == NULL)
|
||||
@ -60,9 +78,16 @@ static int ft_get_infile(const char *line)
|
||||
if (fd != 0)
|
||||
close(fd);
|
||||
if (ft_strcmp("<", tab[i]) == 0)
|
||||
fd = ft_file_is_readable(ft_quote_remover(tab[i + 1]));
|
||||
{
|
||||
path = ft_env_filler(data, tab[i + 1]);
|
||||
if (path == NULL)
|
||||
return (-2);
|
||||
ft_quote_remover(path);
|
||||
fd = open(path, O_RDONLY);
|
||||
free(path);
|
||||
}
|
||||
else if (ft_strcmp("<<", tab[i]) == 0)
|
||||
fd = ft_heredoc(tab[i + 1]);
|
||||
fd = ft_heredoc(data, ft_quote_remover(tab[i + 1]));
|
||||
i++;
|
||||
}
|
||||
ft_freer_tab_ultimate(1, tab);
|
||||
@ -87,25 +112,25 @@ static int ft_remove_infile(char *line)
|
||||
{
|
||||
if (tab[i][0] == '<')
|
||||
{
|
||||
ft_strshift(line + y, -1 * (ft_strlen(tab[i]) + 1));
|
||||
ft_strshift(line + y,
|
||||
(-1) * (ft_strlen(tab[i]) + ft_strlen(tab[i + 1]) + 1 + (line[ft_strlen(tab[i]) + ft_strlen(tab[i + 1]) + 1] != '\0')));
|
||||
i++;
|
||||
ft_strshift(line + y, -1 * (ft_strlen(tab[i]) + 1));
|
||||
}
|
||||
else
|
||||
y = y + ft_strlen(tab[i]);
|
||||
y = y + ft_strlen(tab[i]) + (y != 0);
|
||||
i++;
|
||||
}
|
||||
ft_freer_tab_ultimate(1, tab);
|
||||
return (0);
|
||||
}
|
||||
|
||||
int ft_infile(char *line)
|
||||
int ft_infile(t_data *data, char *line)
|
||||
{
|
||||
int fd;
|
||||
|
||||
if (ft_infile_is_valid(line) == 0)
|
||||
if (ft_infile_is_valid(data, line) == 0)
|
||||
return (-2);
|
||||
fd = ft_get_infile(line);
|
||||
fd = ft_get_infile(data, line);
|
||||
if (fd == -2)
|
||||
return (-2);
|
||||
ft_remove_infile(line);
|
||||
|
@ -36,4 +36,4 @@ fclean: clean
|
||||
|
||||
re: fclean all
|
||||
|
||||
.PHONY: all bonus clean fclean re
|
||||
.PHONY: all clean fclean re
|
||||
|
Binary file not shown.
@ -6,7 +6,7 @@
|
||||
/* By: cchauvet <cchauvet@student.42angoulem +#+ +:+ +#+ */
|
||||
/* +#+#+#+#+#+ +#+ */
|
||||
/* Created: 2022/09/26 14:47:54 by cchauvet #+# #+# */
|
||||
/* Updated: 2023/02/17 16:24:42 by cchauvet ### ########.fr */
|
||||
/* Updated: 2023/02/21 13:28:19 by cchauvet ### ########.fr */
|
||||
/* */
|
||||
/* ************************************************************************** */
|
||||
|
||||
@ -19,6 +19,8 @@
|
||||
char *ft_ultoa_base(unsigned long long n, char *base);
|
||||
int ft_printf(const char *format, ...);
|
||||
int ft_eprintf(const char *format, ...);
|
||||
int ft_dprintf(int fd, const char *format, ...);
|
||||
int ft_dprintf(int fd, const char *format, ...);
|
||||
char *get_next_line(int fd);
|
||||
size_t ft_random_generator(size_t start, size_t stop);
|
||||
void ft_freer_tab_ultimate(size_t len, ...);
|
||||
|
@ -6,7 +6,7 @@
|
||||
/* By: cchauvet <cchauvet@student.42angoulem +#+ +:+ +#+ */
|
||||
/* +#+#+#+#+#+ +#+ */
|
||||
/* Created: 2022/10/06 22:01:28 by cchauvet #+# #+# */
|
||||
/* Updated: 2022/10/12 16:34:31 by cchauvet ### ########.fr */
|
||||
/* Updated: 2023/02/21 13:27:31 by cchauvet ### ########.fr */
|
||||
/* */
|
||||
/* ************************************************************************** */
|
||||
|
||||
@ -22,3 +22,14 @@ int ft_printf(const char *format, ...)
|
||||
va_end(va);
|
||||
return (i);
|
||||
}
|
||||
|
||||
int ft_dprintf(int fd, const char *format, ...)
|
||||
{
|
||||
va_list va;
|
||||
int i;
|
||||
|
||||
va_start(va, format);
|
||||
i = ft_vdprintf(fd, format, va);
|
||||
va_end(va);
|
||||
return (i);
|
||||
}
|
||||
|
@ -6,7 +6,7 @@
|
||||
/* By: cchauvet <cchauvet@student.42angoulem +#+ +:+ +#+ */
|
||||
/* +#+#+#+#+#+ +#+ */
|
||||
/* Created: 2022/09/26 14:47:54 by cchauvet #+# #+# */
|
||||
/* Updated: 2023/02/17 16:29:18 by cchauvet ### ########.fr */
|
||||
/* Updated: 2023/02/21 13:27:51 by cchauvet ### ########.fr */
|
||||
/* */
|
||||
/* ************************************************************************** */
|
||||
|
||||
@ -32,6 +32,7 @@ int ft_dprintarg(int fd, int c, va_list va);
|
||||
int ft_dprintstrtab(int fd, char **tab);
|
||||
|
||||
int ft_printf(const char *format, ...);
|
||||
int ft_dprintf(int fd, const char *format, ...);
|
||||
int ft_eprintf(const char *format, ...);
|
||||
|
||||
int ft_vdprintf(int fd, const char *format, va_list va);
|
||||
|
132
main.c
132
main.c
@ -6,145 +6,157 @@
|
||||
/* By: cchauvet <cchauvet@student.42angoulem +#+ +:+ +#+ */
|
||||
/* +#+#+#+#+#+ +#+ */
|
||||
/* Created: 2023/02/16 15:16:14 by cchauvet #+# #+# */
|
||||
/* Updated: 2023/02/17 16:06:02 by cchauvet ### ########.fr */
|
||||
/* Updated: 2023/02/24 11:04:40 by cchauvet ### ########.fr */
|
||||
/* */
|
||||
/* ************************************************************************** */
|
||||
|
||||
#include "libftx/libftx.h"
|
||||
#include "minishell.h"
|
||||
#include <readline/readline.h>
|
||||
|
||||
static char *ft_get_user_input(t_list **env)
|
||||
static char *ft_get_user_input()
|
||||
{
|
||||
char *line;
|
||||
char *prompt;
|
||||
char *pwd;
|
||||
|
||||
prompt = ft_strmerger(2, get_value_by_key("PWD", env), "$ ");
|
||||
pwd = get_pwd(2);
|
||||
if (pwd == NULL)
|
||||
return (NULL);
|
||||
prompt = ft_strmerger(2, pwd, "$ ");
|
||||
free(pwd);
|
||||
if (prompt == NULL)
|
||||
{
|
||||
ft_eprintf("minishell: malloc failed\n");
|
||||
return (NULL);
|
||||
}
|
||||
line = readline(prompt);
|
||||
if (line != NULL && ft_strcmp(line, "") != 0)
|
||||
add_history(line);
|
||||
free(prompt);
|
||||
return (line);
|
||||
}
|
||||
|
||||
static int ft_minishell(t_list **env, char *line)
|
||||
static int ft_minishell(t_data *data, char *line)
|
||||
{
|
||||
t_list **cmds;
|
||||
char *line_clean;
|
||||
int infile;
|
||||
int outfile;
|
||||
|
||||
if (ft_syntatic_verif(data, line))
|
||||
return (1);
|
||||
line_clean = ft_normalizer(line);
|
||||
if (line_clean == NULL)
|
||||
return (1);
|
||||
if (ft_syntatic_verif(line_clean))
|
||||
{
|
||||
free(line_clean);
|
||||
return (1);
|
||||
}
|
||||
outfile = ft_outfile(line_clean);
|
||||
outfile = ft_outfile(data, line_clean);
|
||||
if (outfile == -2)
|
||||
{
|
||||
free(line_clean);
|
||||
return (1);
|
||||
return (0);
|
||||
}
|
||||
infile = ft_infile(line_clean);
|
||||
infile = ft_infile(data, line_clean);
|
||||
if (infile == -2)
|
||||
{
|
||||
if (outfile > 2)
|
||||
close(outfile);
|
||||
free(line_clean);
|
||||
return (0);
|
||||
}
|
||||
if (ft_gen_exit_code_var(data))
|
||||
{
|
||||
if (outfile > 2)
|
||||
close(outfile);
|
||||
if (infile > 2)
|
||||
close(infile);
|
||||
free(line_clean);
|
||||
return (1);
|
||||
}
|
||||
cmds = ft_parse_cmds(line_clean, env, infile, outfile);
|
||||
cmds = ft_parse_cmds(data, line_clean, infile, outfile);
|
||||
if (cmds == NULL)
|
||||
{
|
||||
if (outfile > 2)
|
||||
close(outfile);
|
||||
if (infile > 2)
|
||||
close(infile);
|
||||
ft_lstclear(cmds, ft_cmddel);
|
||||
free(cmds);
|
||||
free(line_clean);
|
||||
return (1);
|
||||
}
|
||||
if (ft_cmds_executor(cmds, env) == 1)
|
||||
if (ft_cmds_executor(data, cmds))
|
||||
{
|
||||
if (outfile > 2)
|
||||
close(outfile);
|
||||
if (infile > 2)
|
||||
close(infile);
|
||||
ft_lstclear(cmds, ft_cmddel);
|
||||
free(cmds);
|
||||
free(line_clean);
|
||||
return (1);
|
||||
}
|
||||
ft_lstclear(cmds, ft_cmddel);
|
||||
free(cmds);
|
||||
free(line_clean);
|
||||
return (0);
|
||||
}
|
||||
|
||||
#if DEBUG
|
||||
|
||||
int main(int ac, char **av, char **env)
|
||||
void ft_ctrlc(int num)
|
||||
{
|
||||
t_data data;
|
||||
(void) num;
|
||||
|
||||
if (ac == 1)
|
||||
return (1);
|
||||
data.env = init_env(env);
|
||||
if (data.env == NULL)
|
||||
return (1);
|
||||
free(data.env);
|
||||
return (1);
|
||||
}
|
||||
if (ft_minishell(data.env, av[1]) == 1)
|
||||
if (*ft_get_heredoc() != -1)
|
||||
{
|
||||
ft_lstclear(data.env, env_del);
|
||||
free(data.env);
|
||||
return (1);
|
||||
close(*ft_get_heredoc());
|
||||
*ft_get_heredoc() = -1;
|
||||
}
|
||||
else
|
||||
{
|
||||
rl_replace_line("", 0);
|
||||
rl_on_new_line();
|
||||
ft_putchar_fd('\n', 1);
|
||||
rl_redisplay();
|
||||
}
|
||||
ft_lstclear(data.env, env_del);
|
||||
free(data.env);
|
||||
free(line);
|
||||
return (0);
|
||||
}
|
||||
|
||||
#else
|
||||
|
||||
|
||||
void ft_quit(int num)
|
||||
{
|
||||
(void) num;
|
||||
if (*ft_get_heredoc())
|
||||
{
|
||||
ft_printf("pb");
|
||||
}
|
||||
else
|
||||
ft_printf("bozoman");
|
||||
}
|
||||
|
||||
int main(int ac, char **av, char **env)
|
||||
{
|
||||
t_data data;
|
||||
char *line;
|
||||
|
||||
(void) ac;
|
||||
(void) av;
|
||||
signal(SIGINT, ft_ctrlc);
|
||||
signal(SIGQUIT, ft_quit);
|
||||
data.exit_code = 0;
|
||||
data.exit_code_str = NULL;
|
||||
ft_gen_exit_code_var(&data);
|
||||
data.env = init_env(env);
|
||||
if (data.env == NULL)
|
||||
return (1);
|
||||
line = ft_get_user_input(data.env);
|
||||
if (line == NULL)
|
||||
{
|
||||
ft_lstclear(data.env, env_del);
|
||||
free(data.env);
|
||||
return (1);
|
||||
}
|
||||
line = ft_get_user_input();
|
||||
while (line != NULL)
|
||||
{
|
||||
if (ft_minishell(data.env, line) == 1)
|
||||
{
|
||||
ft_lstclear(data.env, env_del);
|
||||
free(data.env);
|
||||
if (ft_minishell(&data, line) == 1)
|
||||
break ;
|
||||
free(line);
|
||||
return (1);
|
||||
}
|
||||
free(line);
|
||||
line = ft_get_user_input(data.env);
|
||||
line = ft_get_user_input();
|
||||
if (line == NULL)
|
||||
{
|
||||
ft_lstclear(data.env, env_del);
|
||||
free(data.env);
|
||||
return (1);
|
||||
}
|
||||
}
|
||||
break ;
|
||||
}
|
||||
free(data.exit_code_str);
|
||||
ft_lstclear(data.env, env_del);
|
||||
free(data.env);
|
||||
return (data.exit_code);
|
||||
}
|
||||
|
||||
#endif
|
||||
|
77
minishell.h
77
minishell.h
@ -6,7 +6,7 @@
|
||||
/* By: cchauvet <cchauvet@student.42angoulem +#+ +:+ +#+ */
|
||||
/* +#+#+#+#+#+ +#+ */
|
||||
/* Created: 2023/02/14 13:45:30 by cchauvet #+# #+# */
|
||||
/* Updated: 2023/02/17 14:29:56 by cchauvet ### ########.fr */
|
||||
/* Updated: 2023/02/28 14:55:52 by erey-bet ### ########.fr */
|
||||
/* */
|
||||
/* ************************************************************************** */
|
||||
|
||||
@ -19,31 +19,74 @@
|
||||
# include <fcntl.h>
|
||||
# include <sys/wait.h>
|
||||
# include <stdio.h>
|
||||
# include <unistd.h>
|
||||
# include <limits.h>
|
||||
# include <string.h>
|
||||
# include <readline/readline.h>
|
||||
# include <readline/history.h>
|
||||
# define DEBUG 0
|
||||
t_list **init_env(char **env);
|
||||
int set_value_by_key(char *key, char *value, t_list **env);
|
||||
char *get_value_by_key(char *key, t_list **head);
|
||||
int ft_syntatic_verif(const char *str);
|
||||
|
||||
typedef struct s_data
|
||||
{
|
||||
t_list **env;
|
||||
int exit_code;
|
||||
char *exit_code_str;
|
||||
} t_data;
|
||||
|
||||
int ft_syntatic_verif(t_data *data, const char *str);
|
||||
int ft_file_is_readable(const char *path);
|
||||
int ft_file_is_writable(const char *path);
|
||||
int ft_file_is_appendable(const char *path);
|
||||
char *ft_get_file_path(const char *infile);
|
||||
int ft_infile(char *line);
|
||||
int ft_outfile(char *line);
|
||||
int ft_heredoc(char *stop);
|
||||
int ft_infile(t_data *data, char *line);
|
||||
int ft_outfile(t_data *data, char *line);
|
||||
int ft_heredoc(t_data *data, char *stop);
|
||||
int *ft_get_heredoc();
|
||||
size_t ft_seglen_quoted(const char *str, char c);
|
||||
int ft_cmds_executor(t_list **cmds, t_list **env);
|
||||
int ft_cmds_executor(t_data *data, t_list **cmds);
|
||||
char **ft_split_quoted(const char *s, char c);
|
||||
void ft_cmddel(void *content);
|
||||
void env_del(void *content);
|
||||
t_list **ft_parse_cmds(char *line, t_list **env, int infile, int outfile);
|
||||
int ft_cmd_filler(t_list *current, char **args, t_list **env);
|
||||
t_list **ft_parse_cmds(t_data *data, char *line, int infile, int outfile);
|
||||
int ft_gen_exit_code_var(t_data *data);
|
||||
int ft_cmd_filler(t_data *data, t_list *current, char **args);
|
||||
char *ft_normalizer(char *str);
|
||||
char *ft_env_filler(t_list **env, const char *str);
|
||||
char *ft_env_filler(t_data *data, const char *str);
|
||||
char **env_to_strs(t_list **head);
|
||||
|
||||
/* Environnement */
|
||||
t_list **init_env(char **env);
|
||||
char **env_to_strs(t_list **head);
|
||||
int create_value_by_key(char *key, char *value, t_list **head);
|
||||
int create_value_by_key_dup(char *key, char *value, t_list **head);
|
||||
int set_value_by_key(char *key, char *value, t_list **head);
|
||||
char *get_value_by_key(char *key, t_list **head);
|
||||
int get_index(char *s, char c);
|
||||
void swap_env_3(void **a, void **b, void **c);
|
||||
void swap_env(void **a, void **b);
|
||||
void env_del(void *ptr);
|
||||
char **env_to_strs(t_list **head);
|
||||
char *get_value(char *str);
|
||||
char *get_key(char *str);
|
||||
int delete_by_key(char *key, t_list **head);
|
||||
int possible_key(char *key);
|
||||
|
||||
/* Echo */
|
||||
int echo(int fd, char **strs);
|
||||
/* PWD */
|
||||
int pwd(int fd);
|
||||
char *get_pwd(int fd);
|
||||
/* Env */
|
||||
int print_env(t_list **env, int fd);
|
||||
/* Export */
|
||||
int export(t_list **env, char **args, int fd);
|
||||
/* CD */
|
||||
int move_folder(char **args, int fd);
|
||||
/* Unset */
|
||||
int unset(t_list **env, char **args, int fd);
|
||||
/* Exit */
|
||||
int ft_exit(char **args);
|
||||
|
||||
typedef struct s_cmd
|
||||
{
|
||||
int fd_in;
|
||||
@ -52,16 +95,10 @@ typedef struct s_cmd
|
||||
char **args;
|
||||
} t_cmd;
|
||||
|
||||
typedef struct s_data
|
||||
{
|
||||
t_list **env;
|
||||
int heredoc;
|
||||
} t_data;
|
||||
|
||||
typedef struct s_env
|
||||
{
|
||||
void *key;
|
||||
void *value;
|
||||
char *key;
|
||||
char *value;
|
||||
} t_env;
|
||||
|
||||
#endif
|
||||
|
1
minishell_tester
Submodule
1
minishell_tester
Submodule
Submodule minishell_tester added at 1c6111b2fd
65
outfile.c
65
outfile.c
@ -1,22 +1,22 @@
|
||||
/* ************************************************************************** */
|
||||
/* */
|
||||
/* ::: :::::::: */
|
||||
/* outfile.c :+: :+: :+: */
|
||||
/* infile.c :+: :+: :+: */
|
||||
/* +:+ +:+ +:+ */
|
||||
/* By: cchauvet <cchauvet@student.42angoulem +#+ +:+ +#+ */
|
||||
/* +#+#+#+#+#+ +#+ */
|
||||
/* Created: 2023/02/15 18:01:07 by cchauvet #+# #+# */
|
||||
/* Updated: 2023/02/17 13:19:46 by cchauvet ### ########.fr */
|
||||
/* Created: 2023/02/15 17:52:10 by cchauvet #+# #+# */
|
||||
/* Updated: 2023/02/20 13:05:43 by starnakin ### ########.fr */
|
||||
/* */
|
||||
/* ************************************************************************** */
|
||||
|
||||
#include "libftx/libftx.h"
|
||||
#include "minishell.h"
|
||||
|
||||
static int ft_outfile_is_valid(const char *line)
|
||||
static int ft_outfile_is_valid(t_data *data, const char *line)
|
||||
{
|
||||
char **tab;
|
||||
size_t i;
|
||||
char *path;
|
||||
ssize_t i;
|
||||
|
||||
tab = ft_split_quoted(line, ' ');
|
||||
if (tab == NULL)
|
||||
@ -26,24 +26,42 @@ static int ft_outfile_is_valid(const char *line)
|
||||
}
|
||||
if (tab[0] == NULL)
|
||||
return (1);
|
||||
i = 0;
|
||||
while (tab[i + 1] != NULL)
|
||||
i++;
|
||||
i = -1;
|
||||
while (tab[++i] != NULL)
|
||||
{
|
||||
if (tab[i][0] == '>')
|
||||
{
|
||||
ft_eprintf("minishell: %s: must be followed by an infile\n", tab[i]);
|
||||
path = ft_env_filler(data, tab[i + 1]);
|
||||
if (path == NULL)
|
||||
return (0);
|
||||
ft_quote_remover(path);
|
||||
if (ft_file_is_writable(path) == 0)
|
||||
{
|
||||
data->exit_code = 1;
|
||||
free(path);
|
||||
ft_freer_tab_ultimate(1, tab);
|
||||
return (0);
|
||||
}
|
||||
if (ft_contain_only_str(path, "| >>"))
|
||||
{
|
||||
free(path);
|
||||
ft_eprintf("minishell: %s: must be followed by an outfile\n", path);
|
||||
ft_freer_tab_ultimate(1, tab);
|
||||
return (0);
|
||||
}
|
||||
free(path);
|
||||
}
|
||||
}
|
||||
ft_freer_tab_ultimate(1, tab);
|
||||
return (1);
|
||||
}
|
||||
|
||||
static int ft_get_outfile(const char *line)
|
||||
static int ft_get_outfile(t_data *data, const char *line)
|
||||
{
|
||||
size_t i;
|
||||
int fd;
|
||||
char **tab;
|
||||
char *path;
|
||||
|
||||
tab = ft_split_quoted(line, ' ');
|
||||
if (tab == NULL)
|
||||
@ -51,17 +69,22 @@ static int ft_get_outfile(const char *line)
|
||||
ft_eprintf("minishell: malloc failed\n");
|
||||
return (-2);
|
||||
}
|
||||
fd = 1;
|
||||
fd = 0;
|
||||
i = 0;
|
||||
while (tab[i + 1] != NULL)
|
||||
{
|
||||
if (tab[i][0] == '>')
|
||||
if (fd != 1)
|
||||
if (fd != 0)
|
||||
close(fd);
|
||||
path = ft_env_filler(data, tab[i + 1]);
|
||||
if (path == NULL)
|
||||
return (-2);
|
||||
ft_quote_remover(path);
|
||||
if (ft_strcmp(">", tab[i]) == 0)
|
||||
fd = ft_file_is_writable(ft_quote_remover(tab[i + 1]));
|
||||
fd = open(path, O_TRUNC | O_CREAT | O_WRONLY, 0644);
|
||||
else if (ft_strcmp(">>", tab[i]) == 0)
|
||||
fd = ft_file_is_appendable(ft_quote_remover(tab[i + 1]));
|
||||
fd = open(path, O_CREAT | O_APPEND, 0644);
|
||||
free(path);
|
||||
i++;
|
||||
}
|
||||
ft_freer_tab_ultimate(1, tab);
|
||||
@ -86,25 +109,25 @@ static int ft_remove_outfile(char *line)
|
||||
{
|
||||
if (tab[i][0] == '>')
|
||||
{
|
||||
ft_strshift(line + y, -1 * (ft_strlen(tab[i]) + 1));
|
||||
ft_strshift(line + y,
|
||||
(-1) * (ft_strlen(tab[i]) + ft_strlen(tab[i + 1]) + 1 + (line[ft_strlen(tab[i]) + ft_strlen(tab[i + 1]) + 1] != '\0')));
|
||||
i++;
|
||||
ft_strshift(line + y, -1 * (ft_strlen(tab[i]) + 1));
|
||||
}
|
||||
else
|
||||
y = y + ft_strlen(tab[i]);
|
||||
y = y + ft_strlen(tab[i]) + (y != 0);
|
||||
i++;
|
||||
}
|
||||
ft_freer_tab_ultimate(1, tab);
|
||||
return (0);
|
||||
}
|
||||
|
||||
int ft_outfile(char *line)
|
||||
int ft_outfile(t_data *data, char *line)
|
||||
{
|
||||
int fd;
|
||||
|
||||
if (ft_outfile_is_valid(line) == 0)
|
||||
if (ft_outfile_is_valid(data, line) == 0)
|
||||
return (-2);
|
||||
fd = ft_get_outfile(line);
|
||||
fd = ft_get_outfile(data, line);
|
||||
if (fd == -2)
|
||||
return (-2);
|
||||
ft_remove_outfile(line);
|
||||
|
3
spacer.c
3
spacer.c
@ -30,7 +30,7 @@ static char *ft_spacer_after(const char *str)
|
||||
i++;
|
||||
if (ft_is_in("><|", out[i - 1]))
|
||||
{
|
||||
while (str[i] == out[i - 1])
|
||||
while (out[i] == out[i - 1])
|
||||
i++;
|
||||
temp = ft_strreplace(out, " ", i, i);
|
||||
free(out);
|
||||
@ -38,6 +38,7 @@ static char *ft_spacer_after(const char *str)
|
||||
if (out == NULL)
|
||||
return (NULL);
|
||||
}
|
||||
if (out[i] != '\0')
|
||||
i++;
|
||||
}
|
||||
return (out);
|
||||
|
31
syntatics.c
31
syntatics.c
@ -1,3 +1,15 @@
|
||||
/* ************************************************************************** */
|
||||
/* */
|
||||
/* ::: :::::::: */
|
||||
/* syntatics.c :+: :+: :+: */
|
||||
/* +:+ +:+ +:+ */
|
||||
/* By: cchauvet <cchauvet@student.42angoulem +#+ +:+ +#+ */
|
||||
/* +#+#+#+#+#+ +#+ */
|
||||
/* Created: 2023/02/21 13:00:05 by cchauvet #+# #+# */
|
||||
/* Updated: 2023/02/21 23:40:20 by cchauvet ### ########.fr */
|
||||
/* */
|
||||
/* ************************************************************************** */
|
||||
|
||||
#include "libftx/libftx.h"
|
||||
#include "minishell.h"
|
||||
#include "utils/utils.h"
|
||||
@ -6,7 +18,7 @@ static int ft_quote_verif(const char *str)
|
||||
{
|
||||
if (ft_is_in_quote(str, ft_strlen(str)))
|
||||
{
|
||||
ft_eprintf("minishell: Quote is note closed");
|
||||
ft_eprintf("minishell: Quote is not closed\n");
|
||||
return (1);
|
||||
}
|
||||
else
|
||||
@ -24,6 +36,8 @@ static int ft_pipe_is_alone(const char *str)
|
||||
{
|
||||
while (str[i] == ' ')
|
||||
i++;
|
||||
while (ft_is_in_quote(str, i))
|
||||
i++;
|
||||
if (str[i] == '\0')
|
||||
break ;
|
||||
if (str[i] != '|')
|
||||
@ -66,7 +80,7 @@ static int ft_special_char_dub(const char *str)
|
||||
if ((y > 2 && (str[i] == '>' || str[i] == '<'))
|
||||
|| (y > 1 && str[i] == '|'))
|
||||
{
|
||||
ft_eprintf("minishell: to many %c in a row", str, str[i]);
|
||||
ft_eprintf("minishell: too many %s in a row\n", str);
|
||||
return (1);
|
||||
}
|
||||
i = i + y;
|
||||
@ -84,15 +98,18 @@ int ft_empty_verif(const char *str)
|
||||
i = 0;
|
||||
while (str[i] == ' ')
|
||||
i++;
|
||||
if (str[i] == '\0')
|
||||
ft_eprintf("minishell: %s: command not found \n", str);
|
||||
return (str[i] == '\0');
|
||||
}
|
||||
|
||||
int ft_syntatic_verif(const char *str)
|
||||
int ft_syntatic_verif(t_data *data, const char *str)
|
||||
{
|
||||
return (ft_quote_verif(str)
|
||||
if (ft_quote_verif(str)
|
||||
|| ft_empty_verif(str)
|
||||
|| ft_pipe_is_alone(str)
|
||||
|| ft_special_char_dub(str));
|
||||
|| ft_special_char_dub(str))
|
||||
{
|
||||
data->exit_code = 2;
|
||||
return (1);
|
||||
}
|
||||
return (0);
|
||||
}
|
||||
|
1
tester
Submodule
1
tester
Submodule
Submodule tester added at 1c6111b2fd
50
utils/ft_atoi_check.c
Normal file
50
utils/ft_atoi_check.c
Normal file
@ -0,0 +1,50 @@
|
||||
/* ************************************************************************** */
|
||||
/* */
|
||||
/* ::: :::::::: */
|
||||
/* ft_atoi_check.c :+: :+: :+: */
|
||||
/* +:+ +:+ +:+ */
|
||||
/* By: erey-bet <marvin@42.fr> +#+ +:+ +#+ */
|
||||
/* +#+#+#+#+#+ +#+ */
|
||||
/* Created: 2022/07/21 08:21:05 by erey-bet #+# #+# */
|
||||
/* Updated: 2023/02/28 13:52:13 by erey-bet ### ########.fr */
|
||||
/* */
|
||||
/* ************************************************************************** */
|
||||
|
||||
#include "utils.h"
|
||||
|
||||
static int ft_isspace(char c)
|
||||
{
|
||||
if (c == ' ' || c == '\f'
|
||||
||c == '\n' || c == '\r' || c == '\t' || c == '\v')
|
||||
return (1);
|
||||
return (0);
|
||||
}
|
||||
|
||||
int ft_atoi_check(const char *nptr)
|
||||
{
|
||||
long result;
|
||||
int sign;
|
||||
|
||||
while (ft_isspace(*nptr))
|
||||
nptr++;
|
||||
sign = 1;
|
||||
if (*nptr == '+' || *nptr == '-')
|
||||
{
|
||||
if (*nptr == '-')
|
||||
sign = -1;
|
||||
nptr++;
|
||||
}
|
||||
result = 0;
|
||||
while (*nptr >= '0' && *nptr <= '9')
|
||||
{
|
||||
result = result * 10 + *nptr++ - '0';
|
||||
if ((result > 2147483647 && sign == 1)
|
||||
|| (result > 2147483647 && sign == 1))
|
||||
return (2);
|
||||
}
|
||||
if (*nptr--)
|
||||
return (1);
|
||||
if (*nptr == '-' || *nptr == '+')
|
||||
return (1);
|
||||
return (0);
|
||||
}
|
@ -1,40 +1,27 @@
|
||||
/* ************************************************************************** */
|
||||
/* */
|
||||
/* ::: :::::::: */
|
||||
/* export.c :+: :+: :+: */
|
||||
/* ft_change_exit_code.c :+: :+: :+: */
|
||||
/* +:+ +:+ +:+ */
|
||||
/* By: cchauvet <cchauvet@student.42angoulem +#+ +:+ +#+ */
|
||||
/* +#+#+#+#+#+ +#+ */
|
||||
/* Created: 2023/02/14 14:27:08 by cchauvet #+# #+# */
|
||||
/* Updated: 2023/02/14 14:52:50 by cchauvet ### ########.fr */
|
||||
/* Created: 2023/02/24 19:04:04 by cchauvet #+# #+# */
|
||||
/* Updated: 2023/02/24 19:05:57 by cchauvet ### ########.fr */
|
||||
/* */
|
||||
/* ************************************************************************** */
|
||||
|
||||
#include "../minishell.h"
|
||||
|
||||
int main(char **env)
|
||||
int ft_change_exit_code(t_data *data, int new_value)
|
||||
{
|
||||
t_list **env_lst;
|
||||
t_list *current;
|
||||
char *key;
|
||||
char *value;
|
||||
char *exit_code_str;
|
||||
|
||||
env_lst = init_env(env);
|
||||
current = *env_lst;
|
||||
while (current != NULL)
|
||||
data->exit_code = new_value;
|
||||
exit_code_str = ft_itoa(new_value);
|
||||
if (exit_code_str == NULL)
|
||||
{
|
||||
value = ft_strchr(current->content, '=') + 1;
|
||||
key = ft_strndup(current->content,
|
||||
ft_strlen(current->content) - ft_strlen(value));
|
||||
if (key == NULL)
|
||||
{
|
||||
ft_lstclear(env_lst, env_del);
|
||||
ft_eprintf("minishell: malloc failed\n");
|
||||
return (1);
|
||||
}
|
||||
ft_printf("declare -x %s=\"%s\"\n", key, value);
|
||||
free(key);
|
||||
current = current->next;
|
||||
}
|
||||
ft_lstclear(env_lst, env_del);
|
||||
return (0);
|
||||
}
|
@ -1,3 +1,15 @@
|
||||
/* ************************************************************************** */
|
||||
/* */
|
||||
/* ::: :::::::: */
|
||||
/* ft_is_in_quote.c :+: :+: :+: */
|
||||
/* +:+ +:+ +:+ */
|
||||
/* By: cchauvet <cchauvet@student.42angoulem +#+ +:+ +#+ */
|
||||
/* +#+#+#+#+#+ +#+ */
|
||||
/* Created: 2023/02/21 12:59:34 by cchauvet #+# #+# */
|
||||
/* Updated: 2023/02/21 23:08:10 by cchauvet ### ########.fr */
|
||||
/* */
|
||||
/* ************************************************************************** */
|
||||
|
||||
#include "utils.h"
|
||||
|
||||
int ft_is_in_quote(const char *str, size_t n)
|
||||
@ -15,15 +27,13 @@ int ft_is_in_quote(const char *str, size_t n)
|
||||
{
|
||||
if (simple_quoted == 0)
|
||||
double_quoted = !double_quoted;
|
||||
|
||||
}
|
||||
if (str[i] == '\'')
|
||||
else if (str[i] == '\'')
|
||||
{
|
||||
if (double_quoted == 0)
|
||||
simple_quoted = !simple_quoted;
|
||||
|
||||
}
|
||||
i++;
|
||||
}
|
||||
return (simple_quoted == 1 + (double_quoted == 1) * 2);
|
||||
return (simple_quoted + double_quoted * 2);
|
||||
}
|
||||
|
@ -6,7 +6,7 @@
|
||||
/* By: cchauvet <cchauvet@student.42angoulem +#+ +:+ +#+ */
|
||||
/* +#+#+#+#+#+ +#+ */
|
||||
/* Created: 2023/02/15 14:12:00 by cchauvet #+# #+# */
|
||||
/* Updated: 2023/02/16 13:20:50 by cchauvet ### ########.fr */
|
||||
/* Updated: 2023/02/21 14:33:28 by cchauvet ### ########.fr */
|
||||
/* */
|
||||
/* ************************************************************************** */
|
||||
|
||||
@ -19,6 +19,7 @@ char *ft_quote_remover(char *str)
|
||||
ssize_t stop;
|
||||
|
||||
start = -1;
|
||||
stop = -1;
|
||||
i = 0;
|
||||
while (str[i] != '\0')
|
||||
{
|
||||
@ -27,17 +28,18 @@ char *ft_quote_remover(char *str)
|
||||
if (start == -1)
|
||||
start = i;
|
||||
else if (str[i] == str[start])
|
||||
{
|
||||
stop = i;
|
||||
break ;
|
||||
}
|
||||
}
|
||||
i++;
|
||||
}
|
||||
if (start != -1)
|
||||
if (stop != -1)
|
||||
{
|
||||
ft_strshift(str, -1);
|
||||
ft_strshift(str + start, -1);
|
||||
ft_strshift(str + stop - 1, -1);
|
||||
start = -1;
|
||||
stop = -1;
|
||||
i = i - 2;
|
||||
}
|
||||
else
|
||||
i++;
|
||||
}
|
||||
return (str);
|
||||
}
|
||||
|
@ -1,3 +1,15 @@
|
||||
/* ************************************************************************** */
|
||||
/* */
|
||||
/* ::: :::::::: */
|
||||
/* ft_strnchr.c :+: :+: :+: */
|
||||
/* +:+ +:+ +:+ */
|
||||
/* By: cchauvet <cchauvet@student.42angoulem +#+ +:+ +#+ */
|
||||
/* +#+#+#+#+#+ +#+ */
|
||||
/* Created: 2023/02/21 12:59:06 by cchauvet #+# #+# */
|
||||
/* Updated: 2023/02/21 12:59:07 by cchauvet ### ########.fr */
|
||||
/* */
|
||||
/* ************************************************************************** */
|
||||
|
||||
#include "utils.h"
|
||||
|
||||
ssize_t ft_strnchr(const char *str, char c)
|
||||
|
@ -1,3 +1,15 @@
|
||||
/* ************************************************************************** */
|
||||
/* */
|
||||
/* ::: :::::::: */
|
||||
/* ft_strncpy.c :+: :+: :+: */
|
||||
/* +:+ +:+ +:+ */
|
||||
/* By: cchauvet <cchauvet@student.42angoulem +#+ +:+ +#+ */
|
||||
/* +#+#+#+#+#+ +#+ */
|
||||
/* Created: 2023/02/21 12:59:16 by cchauvet #+# #+# */
|
||||
/* Updated: 2023/02/21 12:59:19 by cchauvet ### ########.fr */
|
||||
/* */
|
||||
/* ************************************************************************** */
|
||||
|
||||
#include "utils.h"
|
||||
|
||||
size_t ft_strncpy(char *dst, const char *src, size_t n)
|
||||
|
@ -1,11 +1,25 @@
|
||||
/* ************************************************************************** */
|
||||
/* */
|
||||
/* ::: :::::::: */
|
||||
/* ft_strreplace.c :+: :+: :+: */
|
||||
/* +:+ +:+ +:+ */
|
||||
/* By: cchauvet <cchauvet@student.42angoulem +#+ +:+ +#+ */
|
||||
/* +#+#+#+#+#+ +#+ */
|
||||
/* Created: 2023/02/21 12:46:20 by cchauvet #+# #+# */
|
||||
/* Updated: 2023/02/21 12:58:44 by cchauvet ### ########.fr */
|
||||
/* */
|
||||
/* ************************************************************************** */
|
||||
|
||||
#include "utils.h"
|
||||
|
||||
char *ft_strreplace(const char *str, const char *fill, size_t start, size_t stop)
|
||||
char *ft_strreplace(const char *str, const char *fill,
|
||||
size_t start, size_t stop)
|
||||
{
|
||||
char *out;
|
||||
size_t sum;
|
||||
|
||||
out = malloc((ft_strlen(str) + ft_strlen(fill) - (stop - start) + 1 * sizeof(char)));
|
||||
out = malloc((ft_strlen(str) + ft_strlen(fill) -\
|
||||
(stop - start) + 1 * sizeof(char)));
|
||||
if (out == NULL)
|
||||
return (NULL);
|
||||
ft_strncpy(out, str, start);
|
||||
|
68
utils/tags
Normal file
68
utils/tags
Normal file
@ -0,0 +1,68 @@
|
||||
!_TAG_EXTRA_DESCRIPTION anonymous /Include tags for non-named objects like lambda/
|
||||
!_TAG_EXTRA_DESCRIPTION fileScope /Include tags of file scope/
|
||||
!_TAG_EXTRA_DESCRIPTION pseudo /Include pseudo tags/
|
||||
!_TAG_EXTRA_DESCRIPTION subparser /Include tags generated by subparsers/
|
||||
!_TAG_FIELD_DESCRIPTION epoch /the last modified time of the input file (only for F\/file kind tag)/
|
||||
!_TAG_FIELD_DESCRIPTION file /File-restricted scoping/
|
||||
!_TAG_FIELD_DESCRIPTION input /input file/
|
||||
!_TAG_FIELD_DESCRIPTION name /tag name/
|
||||
!_TAG_FIELD_DESCRIPTION pattern /pattern/
|
||||
!_TAG_FIELD_DESCRIPTION typeref /Type and name of a variable or typedef/
|
||||
!_TAG_FIELD_DESCRIPTION!C++ name /aliased names/
|
||||
!_TAG_FILE_FORMAT 2 /extended format; --format=1 will not append ;" to lines/
|
||||
!_TAG_FILE_SORTED 1 /0=unsorted, 1=sorted, 2=foldcase/
|
||||
!_TAG_KIND_DESCRIPTION!C d,macro /macro definitions/
|
||||
!_TAG_KIND_DESCRIPTION!C e,enumerator /enumerators (values inside an enumeration)/
|
||||
!_TAG_KIND_DESCRIPTION!C f,function /function definitions/
|
||||
!_TAG_KIND_DESCRIPTION!C g,enum /enumeration names/
|
||||
!_TAG_KIND_DESCRIPTION!C h,header /included header files/
|
||||
!_TAG_KIND_DESCRIPTION!C m,member /struct, and union members/
|
||||
!_TAG_KIND_DESCRIPTION!C s,struct /structure names/
|
||||
!_TAG_KIND_DESCRIPTION!C t,typedef /typedefs/
|
||||
!_TAG_KIND_DESCRIPTION!C u,union /union names/
|
||||
!_TAG_KIND_DESCRIPTION!C v,variable /variable definitions/
|
||||
!_TAG_KIND_DESCRIPTION!C++ c,class /classes/
|
||||
!_TAG_KIND_DESCRIPTION!C++ d,macro /macro definitions/
|
||||
!_TAG_KIND_DESCRIPTION!C++ e,enumerator /enumerators (values inside an enumeration)/
|
||||
!_TAG_KIND_DESCRIPTION!C++ f,function /function definitions/
|
||||
!_TAG_KIND_DESCRIPTION!C++ g,enum /enumeration names/
|
||||
!_TAG_KIND_DESCRIPTION!C++ h,header /included header files/
|
||||
!_TAG_KIND_DESCRIPTION!C++ m,member /class, struct, and union members/
|
||||
!_TAG_KIND_DESCRIPTION!C++ n,namespace /namespaces/
|
||||
!_TAG_KIND_DESCRIPTION!C++ s,struct /structure names/
|
||||
!_TAG_KIND_DESCRIPTION!C++ t,typedef /typedefs/
|
||||
!_TAG_KIND_DESCRIPTION!C++ u,union /union names/
|
||||
!_TAG_KIND_DESCRIPTION!C++ v,variable /variable definitions/
|
||||
!_TAG_OUTPUT_EXCMD mixed /number, pattern, mixed, or combineV2/
|
||||
!_TAG_OUTPUT_FILESEP slash /slash or backslash/
|
||||
!_TAG_OUTPUT_MODE u-ctags /u-ctags or e-ctags/
|
||||
!_TAG_OUTPUT_VERSION 0.0 /current.age/
|
||||
!_TAG_PARSER_VERSION!C 0.0 /current.age/
|
||||
!_TAG_PARSER_VERSION!C++ 0.0 /current.age/
|
||||
!_TAG_PATTERN_LENGTH_LIMIT 96 /0 for no limit/
|
||||
!_TAG_PROC_CWD /nfs/homes/cchauvet/42/minishell/utils/ //
|
||||
!_TAG_PROGRAM_AUTHOR Universal Ctags Team //
|
||||
!_TAG_PROGRAM_NAME Universal Ctags /Derived from Exuberant Ctags/
|
||||
!_TAG_PROGRAM_URL https://ctags.io/ /official site/
|
||||
!_TAG_PROGRAM_VERSION 6.0.0 //
|
||||
!_TAG_ROLE_DESCRIPTION!C!header local /local header/
|
||||
!_TAG_ROLE_DESCRIPTION!C!header system /system header/
|
||||
!_TAG_ROLE_DESCRIPTION!C!macro undef /undefined/
|
||||
!_TAG_ROLE_DESCRIPTION!C++!header local /local header/
|
||||
!_TAG_ROLE_DESCRIPTION!C++!header system /system header/
|
||||
!_TAG_ROLE_DESCRIPTION!C++!macro undef /undefined/
|
||||
UTILS_H utils.h /^# define UTILS_H$/;" d
|
||||
ft_atoi_check ft_atoi_check.c /^int ft_atoi_check(const char *nptr)$/;" f typeref:typename:int
|
||||
ft_change_exit_code ft_change_exit_code.c /^int ft_change_exit_code(t_data *data, int new_value)$/;" f typeref:typename:int
|
||||
ft_is_in_quote ft_is_in_quote.c /^int ft_is_in_quote(const char *str, size_t n)$/;" f typeref:typename:int
|
||||
ft_isspace ft_atoi_check.c /^static int ft_isspace(char c)$/;" f typeref:typename:int file:
|
||||
ft_printn ft_printn.c /^void ft_printn(const char *str, size_t n)$/;" f typeref:typename:void
|
||||
ft_quote_remover ft_quote_remover.c /^char *ft_quote_remover(char *str)$/;" f typeref:typename:char *
|
||||
ft_seglen_quoted ft_split_quoted.c /^size_t ft_seglen_quoted(const char *str, char c)$/;" f typeref:typename:size_t
|
||||
ft_segsplitter ft_split_quoted.c /^static char **ft_segsplitter(char **tab, size_t len, const char *s, char c)$/;" f typeref:typename:char ** file:
|
||||
ft_split_quoted ft_split_quoted.c /^char **ft_split_quoted(const char *s, char c)$/;" f typeref:typename:char **
|
||||
ft_str_is_empty ft_str_is_empty.c /^int ft_str_is_empty(const char *str)$/;" f typeref:typename:int
|
||||
ft_strnchr ft_strnchr.c /^ssize_t ft_strnchr(const char *str, char c)$/;" f typeref:typename:ssize_t
|
||||
ft_strncpy ft_strncpy.c /^size_t ft_strncpy(char *dst, const char *src, size_t n)$/;" f typeref:typename:size_t
|
||||
ft_strreplace ft_strreplace.c /^char *ft_strreplace(const char *str, const char *fill,$/;" f typeref:typename:char *
|
||||
ft_strshift ft_strshift.c /^void ft_strshift(char *str, int shift)$/;" f typeref:typename:void
|
@ -25,5 +25,6 @@ int ft_str_is_empty(const char *str);
|
||||
char **ft_split_quoted(const char *s, char c);
|
||||
void ft_strshift(char *str, int shift);
|
||||
char *ft_quote_remover(char *str);
|
||||
int ft_atoi_check(const char *nptr);
|
||||
|
||||
#endif
|
||||
|
Reference in New Issue
Block a user