-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathft_strsep.c
30 lines (27 loc) · 1.1 KB
/
ft_strsep.c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
/* ************************************************************************** */
/* */
/* ::: :::::::: */
/* ft_strsep.c :+: :+: :+: */
/* +:+ +:+ +:+ */
/* By: ariahi <[email protected]> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2022/08/02 22:55:36 by ariahi #+# #+# */
/* Updated: 2022/12/28 16:27:42 by ariahi ### ########.fr */
/* */
/* ************************************************************************** */
#include "libft.h"
char *ft_strsep(char **str, const char *sep)
{
char *s;
char *end;
s = *str;
if (!s)
return (NULL);
end = s + ft_strcspn(s, sep);
if (*end)
*end++ = '\0';
else
end = NULL;
*str = end;
return (s);
}