aboutsummaryrefslogtreecommitdiff
path: root/src/str
diff options
context:
space:
mode:
Diffstat (limited to 'src/str')
-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 228a963..e5edced 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/02/14 03:41:25 by cacharle ### ########.fr */
+/* Updated: 2020/06/12 11:45:59 by charles ### ########.fr */
/* */
/* ************************************************************************** */
@@ -33,3 +33,8 @@ char *ft_strjoinf(char const *s1, char const *s2, t_ftstrjoinf_tag tag)
}
return (joined);
}
+
+char *ft_strjoinf_fst(char const *s1, char const *s2)
+{
+ return (ft_strjoinf(s1, s2, FT_STRJOINF_FST));
+}