aboutsummaryrefslogtreecommitdiff
path: root/src/str/ft_strjoinf.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/str/ft_strjoinf.c')
-rw-r--r--src/str/ft_strjoinf.c7
1 files changed, 6 insertions, 1 deletions
diff --git a/src/str/ft_strjoinf.c b/src/str/ft_strjoinf.c
index 5504ceb..7c96e13 100644
--- a/src/str/ft_strjoinf.c
+++ b/src/str/ft_strjoinf.c
@@ -6,7 +6,7 @@
/* By: cacharle <marvin@42.fr> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2020/02/14 03:41:07 by cacharle #+# #+# */
-/* Updated: 2020/08/19 13:31:00 by charles ### ########.fr */
+/* Updated: 2020/10/08 09:40:22 by cacharle ### ########.fr */
/* */
/* ************************************************************************** */
@@ -35,3 +35,8 @@ char *ft_strjoinf_fst(char const *s1, char const *s2)
{
return (ft_strjoinf(s1, s2, FT_STRJOINF_FST));
}
+
+char *ft_strjoinf_snd(char const *s1, char const *s2)
+{
+ return (ft_strjoinf(s1, s2, FT_STRJOINF_SND));
+}