aboutsummaryrefslogtreecommitdiff
path: root/c09
diff options
context:
space:
mode:
authorCharles <sircharlesaze@gmail.com>2019-07-21 15:26:32 +0200
committerCharles <sircharlesaze@gmail.com>2019-07-21 15:26:32 +0200
commit23ad79e8b41c25bb4992d103d29a17612a52e351 (patch)
tree9de3cde07cc38e59f08885171e9f99eeab8ab71b /c09
parent8b6e91bdb56bc01a588718472546f2a88e750b48 (diff)
downloadpiscine-23ad79e8b41c25bb4992d103d29a17612a52e351.tar.gz
piscine-23ad79e8b41c25bb4992d103d29a17612a52e351.tar.bz2
piscine-23ad79e8b41c25bb4992d103d29a17612a52e351.zip
c10 done, c11 on going, rush02 probably finished, bsq start
Diffstat (limited to 'c09')
-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++)
{