nicolas-arnaud
2 years ago
6 changed files with 49 additions and 14 deletions
@ -0,0 +1,16 @@ |
|||
#include "../libft.h" |
|||
|
|||
char *ft_append(char *s1, char *s2) |
|||
{ |
|||
char *ret; |
|||
|
|||
ret = NULL; |
|||
if (!s1) |
|||
return (s2); |
|||
if (!s2) |
|||
return (s1); |
|||
ret = ft_strjoin(s1, s2); |
|||
free(s1); |
|||
free(s2); |
|||
return (ret); |
|||
} |
@ -0,0 +1,18 @@ |
|||
#include "../libft.h" |
|||
|
|||
char *ft_strnew(int n, char c) |
|||
{ |
|||
char *str; |
|||
|
|||
str = NULL; |
|||
if (n < 0) |
|||
return (NULL); |
|||
str = malloc(n + 1); |
|||
if (!str) |
|||
return (NULL); |
|||
str[n] = '\0'; |
|||
while (--n >= 0) |
|||
str[n] = c; |
|||
return (str); |
|||
} |
|||
|
Loading…
Reference in new issue