blob: 78efbd796ea26874f354254e04e66de27b8cd8b4 (
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
|
/* ************************************************************************** */
/* */
/* ::: :::::::: */
/* read_heredoc.c :+: :+: :+: */
/* +:+ +:+ +:+ */
/* By: dkaiser <dkaiser@student.42heilbronn.de +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2025/01/15 18:22:09 by dkaiser #+# #+# */
/* Updated: 2025/01/15 18:22:52 by dkaiser ### ########.fr */
/* */
/* ************************************************************************** */
#include "minishell.h"
char *read_heredoc(char *delimiter)
{
char *line;
char *result;
char *temp;
size_t total_length;
size_t line_length;
total_length = 0;
result = NULL;
while (1)
{
line = readline("> ");
if (!line || ft_strcmp(line, delimiter) == 0)
{
free(line);
break ;
}
line_length = ft_strlen(line) + 1;
temp = malloc(total_length + line_length + 1);
if (!temp)
{
perror("malloc");
return (free(result), NULL);
}
if (result)
{
ft_strcpy(temp, result);
free(result);
}
else
temp[0] = '\0';
ft_strcat(temp, line);
ft_strcat(temp, "\n");
result = temp;
total_length += line_length;
free(line);
}
return (result);
}
|