/* ************************************************************************** */
/* */
/* ::: :::::::: */
/* get_next_line_utils.c :+: :+: :+: */
/* +:+ +:+ +:+ */
/* By: adjoly <adjoly@student.42.fr> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2023/12/01 17:12:02 by adjoly #+# #+# */
/* Updated: 2023/12/01 22:31:36 by adjoly ### ########.fr */
#include "get_next_line.h"
size_t ft_strlen(char *s)
{
size_t i;
i = 0;
while (s[i])
i++;
return (i);
}
size_t ft_strlen_til_nl(char *s)
while (s[i] && s[i] != '\n')
char *ft_strjoin(char *s1, char *s2)
char *result;
size_t j;
j = 0;
if (s1 == NULL && s2 == NULL)
return (NULL);
result = malloc((ft_strlen(s1) + ft_strlen(s2) + 1) * sizeof(char));
if (result == NULL)
while (s1[i])
result[i] = s1[i];
while (s2[j])
result[i] = s2[j];
j++;
result[i] = '\0';
return (result);