From 8b6e91bdb56bc01a588718472546f2a88e750b48 Mon Sep 17 00:00:00 2001 From: Charles Date: Fri, 19 Jul 2019 07:04:04 +0200 Subject: c10 done?, c11 moulinetted (ex04, ex06 need correction) --- c09/main.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'c09') diff --git a/c09/main.c b/c09/main.c index 02c5a61..6c183b7 100644 --- a/c09/main.c +++ b/c09/main.c @@ -5,12 +5,12 @@ int main() { - char *const str = "3YaZkAP30iGoBWv L asdf h LbpX8Hx FWHwB2u1FH0S5"; + char *const str = "3YaZkAP30iGoBWv L H asdf h LbpX8Hx FWHwB2u1FH0S5"; char *begin = "\n \t hgonjour"; char *end = "jesuis\n\t hhh"; char *empty = " h bonjour je suis "; - char *charset = "\n\t"; - char **strs = ft_split(end, charset); + char *charset = " H"; + char **strs = ft_split(str, charset); printf("tab start\n"); for (int i = 0; strs[i] != 0; i++) { -- cgit