20 lines
No EOL
1 KiB
C
20 lines
No EOL
1 KiB
C
/* ************************************************************************** */
|
|
/* */
|
|
/* ::: :::::::: */
|
|
/* str_substring.h :+: :+: :+: */
|
|
/* +:+ +:+ +:+ */
|
|
/* By: maiboyer <maiboyer@student.42.fr> +#+ +:+ +#+ */
|
|
/* +#+#+#+#+#+ +#+ */
|
|
/* Created: 2023/11/07 22:42:55 by maiboyer #+# #+# */
|
|
/* Updated: 2023/12/09 16:18:41 by maiboyer ### ########.fr */
|
|
/* */
|
|
/* ************************************************************************** */
|
|
|
|
#ifndef STR_SUBSTRING_H
|
|
# define STR_SUBSTRING_H
|
|
|
|
# include "me/types.h"
|
|
|
|
t_str str_substring(t_const_str str, t_usize start, t_usize len);
|
|
|
|
#endif |