-
Notifications
You must be signed in to change notification settings - Fork 0
/
ft.strtrim.c
23 lines (18 loc) · 984 Bytes
/
ft.strtrim.c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
/* ************************************************************************** */
/* */
/* ::: :::::::: */
/* ft.strtrim.c :+: :+: :+: */
/* +:+ +:+ +:+ */
/* By: lstorey <[email protected]> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2023/11/13 14:36:59 by lstorey #+# #+# */
/* Updated: 2023/11/13 15:05:24 by lstorey ### ########.fr */
/* */
/* ************************************************************************** */
#include "libft"
char *ft_strtrim(char const *s1, char const *set)
{
}
int main(int)
{
}