aboutsummaryrefslogtreecommitdiff
path: root/c09/main.c
diff options
context:
space:
mode:
authorCabergs Charles <cacharle@e-r6-p7.s19.be>2019-07-21 15:26:32 +0200
committerCabergs Charles <cacharle@e-r6-p7.s19.be>2019-07-21 15:26:32 +0200
commit454d82f30e354e2629563822bac637e5eaa8e4ff (patch)
tree9de3cde07cc38e59f08885171e9f99eeab8ab71b /c09/main.c
parent9eef9647b83f32f4bd8086de420cf1caeabf0206 (diff)
downloadpiscine-454d82f30e354e2629563822bac637e5eaa8e4ff.tar.gz
piscine-454d82f30e354e2629563822bac637e5eaa8e4ff.tar.bz2
piscine-454d82f30e354e2629563822bac637e5eaa8e4ff.zip
c10 done, c11 on going, rush02 probably finished, bsq start
Diffstat (limited to 'c09/main.c')
-rw-r--r--c09/main.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/c09/main.c b/c09/main.c
index 6c183b7..070fbce 100644
--- a/c09/main.c
+++ b/c09/main.c
@@ -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++)
{