20 lines
No EOL
1,011 B
C
20 lines
No EOL
1,011 B
C
/* ************************************************************************** */
|
|
/* */
|
|
/* ::: :::::::: */
|
|
/* str_join.h :+: :+: :+: */
|
|
/* +:+ +:+ +:+ */
|
|
/* By: maiboyer <maiboyer@student.42.fr> +#+ +:+ +#+ */
|
|
/* +#+#+#+#+#+ +#+ */
|
|
/* Created: 2023/11/07 23:02:58 by maiboyer #+# #+# */
|
|
/* Updated: 2023/12/09 16:08:32 by maiboyer ### ########.fr */
|
|
/* */
|
|
/* ************************************************************************** */
|
|
|
|
#ifndef STR_JOIN_H
|
|
# define STR_JOIN_H
|
|
|
|
# include "me/types.h"
|
|
|
|
t_str str_join(t_const_str s1, t_const_str s2);
|
|
|
|
#endif |