diff options
Diffstat (limited to 'c09/main.c')
| -rw-r--r-- | c09/main.c | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -8,9 +8,9 @@ int main() 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 *empty = ""; char *charset = " H"; - char **strs = ft_split(str, charset); + char **strs = ft_split(empty, charset); printf("tab start\n"); for (int i = 0; strs[i] != 0; i++) { |
