20 lines
1,003 B
C
20 lines
1,003 B
C
/* ************************************************************************** */
|
|
/* */
|
|
/* ::: :::::::: */
|
|
/* str_clone.h :+: :+: :+: */
|
|
/* +:+ +:+ +:+ */
|
|
/* By: maiboyer <maiboyer@student.42.fr> +#+ +:+ +#+ */
|
|
/* +#+#+#+#+#+ +#+ */
|
|
/* Created: 2023/11/06 16:05:48 by maiboyer #+# #+# */
|
|
/* Updated: 2023/12/11 17:30:19 by maiboyer ### ########.fr */
|
|
/* */
|
|
/* ************************************************************************** */
|
|
|
|
#ifndef STR_CLONE_H
|
|
# define STR_CLONE_H
|
|
|
|
# include "me/types.h"
|
|
|
|
t_str str_clone(t_const_str source);
|
|
|
|
#endif
|