sa marche un peux
This commit is contained in:
parent
07565c2c6c
commit
df151381bc
Binary file not shown.
@ -6,7 +6,7 @@
|
||||
/* By: cchauvet <cchauvet@student.42angoulem +#+ +:+ +#+ */
|
||||
/* +#+#+#+#+#+ +#+ */
|
||||
/* Created: 2022/10/26 00:52:47 by cchauvet #+# #+# */
|
||||
/* Updated: 2022/10/26 01:53:25 by cchauvet ### ########.fr */
|
||||
/* Updated: 2022/10/26 16:39:09 by cchauvet ### ########.fr */
|
||||
/* */
|
||||
/* ************************************************************************** */
|
||||
|
||||
@ -38,7 +38,7 @@ ssize_t ft_strchr(char *str, char c)
|
||||
i = 0;
|
||||
while (str[i] != c && str[i] != '\0')
|
||||
i++;
|
||||
if (str[i] == '\0' && c != '\0')
|
||||
if (str[i] == '\0')
|
||||
return (-1);
|
||||
return (i);
|
||||
}
|
||||
@ -51,20 +51,20 @@ char *ft_getline(int fd)
|
||||
|
||||
stash = NULL;
|
||||
i = 0;
|
||||
while (ft_strchr(stash + i * BUFFER_SIZE, '\n'))
|
||||
while (ft_strchr(stash + i, '\n') == -1)
|
||||
{
|
||||
stash = ft_realloc(stash, (i + 1) * BUFFER_SIZE);
|
||||
if (stash == NULL)
|
||||
return (NULL);
|
||||
i = i + ft_strlen(buf);
|
||||
buf = ft_getstash(fd);
|
||||
if (buf == NULL)
|
||||
{
|
||||
free(stash);
|
||||
return (NULL);
|
||||
}
|
||||
ft_strfcat(stash, buf);
|
||||
if (stash[(i + 1) * BUFFER_SIZE -1] == '\0')
|
||||
if (buf[0] == '\0')
|
||||
{
|
||||
free(buf);
|
||||
break ;
|
||||
}
|
||||
stash = ft_strfjoin(stash, buf);
|
||||
if (stash == NULL)
|
||||
return (NULL);
|
||||
}
|
||||
return (stash);
|
||||
}
|
||||
@ -80,13 +80,12 @@ char *get_next_line(int fd)
|
||||
buf1 = ft_getline(fd);
|
||||
if (buf1 == NULL)
|
||||
return (NULL);
|
||||
stash = ft_realloc(stash, ft_strchr(buf1, 0) + ft_strchr(stash, 0) + 2);
|
||||
stash = ft_strfjoin(stash, buf1);
|
||||
if (stash == NULL)
|
||||
return (NULL);
|
||||
ft_strfcat(stash, buf1);
|
||||
}
|
||||
buf1 = ft_strndup(stash, ft_strchr(stash, '\n') + 1);
|
||||
buf2 = ft_strndup(stash + ft_strchr(stash, '\n') + 1, ft_strchr(stash, 0));
|
||||
buf2 = ft_strndup(stash + ft_strchr(stash, '\n') + 1, ft_strlen(stash));
|
||||
free(stash);
|
||||
stash = buf2;
|
||||
if (stash == NULL || buf1 == NULL)
|
||||
|
@ -3,9 +3,12 @@
|
||||
# include <stdlib.h>
|
||||
# include <unistd.h>
|
||||
|
||||
# define BUFFER_SIZE 10
|
||||
|
||||
void *ft_calloc(size_t nmemb, size_t size);
|
||||
void *ft_realloc(void *ptr, size_t size);
|
||||
char *ft_strfcat(char *dst, char *src);
|
||||
char *ft_strfjoin(char *dst, char *src);
|
||||
char *ft_strndup(char *src, size_t n);
|
||||
size_t ft_strlen(char *str);
|
||||
char *get_next_line(int fd);
|
||||
#endif
|
||||
|
@ -6,7 +6,7 @@
|
||||
/* By: cchauvet <cchauvet@student.42angoulem +#+ +:+ +#+ */
|
||||
/* +#+#+#+#+#+ +#+ */
|
||||
/* Created: 2022/10/26 00:55:44 by cchauvet #+# #+# */
|
||||
/* Updated: 2022/10/26 01:24:43 by cchauvet ### ########.fr */
|
||||
/* Updated: 2022/10/26 16:33:23 by cchauvet ### ########.fr */
|
||||
/* */
|
||||
/* ************************************************************************** */
|
||||
|
||||
@ -42,7 +42,10 @@ void *ft_realloc(void *ptr, size_t size)
|
||||
if (tab == NULL)
|
||||
return (NULL);
|
||||
if (ptr == NULL)
|
||||
{
|
||||
free(ptr);
|
||||
return (tab);
|
||||
}
|
||||
i = 0;
|
||||
while (in[i] != 0 && i < size)
|
||||
{
|
||||
@ -53,26 +56,45 @@ void *ft_realloc(void *ptr, size_t size)
|
||||
return (tab);
|
||||
}
|
||||
|
||||
char *ft_strfcat(char *dst, char *src)
|
||||
size_t ft_strlen(char *str)
|
||||
{
|
||||
size_t i;
|
||||
|
||||
if (str == NULL)
|
||||
return (0);
|
||||
i = 0;
|
||||
while (str[i] != '\0')
|
||||
i++;
|
||||
return (i);
|
||||
}
|
||||
|
||||
char *ft_strfjoin(char *s1, char *s2)
|
||||
{
|
||||
size_t i;
|
||||
size_t j;
|
||||
char *out;
|
||||
|
||||
j = 0;
|
||||
while (dst[j] != '\0')
|
||||
j++;
|
||||
out = ft_calloc((ft_strlen(s1) + ft_strlen(s2) + 1), sizeof(char));
|
||||
if (out == NULL)
|
||||
return (NULL);
|
||||
i = 0;
|
||||
if (src != NULL)
|
||||
if (s1 != NULL)
|
||||
{
|
||||
while (src[i] != '\0')
|
||||
while (s1[i] != '\0')
|
||||
{
|
||||
dst[i + j] = src[i];
|
||||
out[i] = s1[i];
|
||||
i++;
|
||||
}
|
||||
}
|
||||
dst[i] = '\0';
|
||||
free(src);
|
||||
return (dst);
|
||||
free(s1);
|
||||
j = 0;
|
||||
while (s2[j] != '\0')
|
||||
{
|
||||
out[i + j] = s2[j];
|
||||
j++;
|
||||
}
|
||||
free(s2);
|
||||
return (out);
|
||||
}
|
||||
|
||||
char *ft_strndup(char *src, size_t n)
|
||||
|
4
main.c
4
main.c
@ -7,7 +7,9 @@
|
||||
int main(void)
|
||||
{
|
||||
int fd = open("tester", O_RDONLY);
|
||||
printf("%s", get_next_line(fd));
|
||||
char *str = get_next_line(fd);
|
||||
printf("%s", str);
|
||||
free(str);
|
||||
// printf("%s", get_next_line(fd));
|
||||
// printf("%s", get_next_line(fd));
|
||||
// printf("%s", get_next_line(fd));
|
||||
|
Loading…
Reference in New Issue
Block a user