aboutsummaryrefslogtreecommitdiff
path: root/exam01/rendu/ft_split/ft_split.c
diff options
context:
space:
mode:
authorCabergs Charles <cacharle@e-r6-p7.s19.be>2019-07-16 12:58:13 +0200
committerCabergs Charles <cacharle@e-r6-p7.s19.be>2019-07-16 12:58:13 +0200
commit66635d69fa00e335a091d7e6f2b358cbaaf205e4 (patch)
tree3ecf5a41b4541980ba0287a431681cd5ae25ad84 /exam01/rendu/ft_split/ft_split.c
parent11114fd684250943de56c4f73ab45c97f2aaf83a (diff)
downloadpiscine-66635d69fa00e335a091d7e6f2b358cbaaf205e4.tar.gz
piscine-66635d69fa00e335a091d7e6f2b358cbaaf205e4.tar.bz2
piscine-66635d69fa00e335a091d7e6f2b358cbaaf205e4.zip
c09 passed, c10 start, exam00 and exam01
Diffstat (limited to 'exam01/rendu/ft_split/ft_split.c')
-rwxr-xr-xexam01/rendu/ft_split/ft_split.c72
1 files changed, 72 insertions, 0 deletions
diff --git a/exam01/rendu/ft_split/ft_split.c b/exam01/rendu/ft_split/ft_split.c
new file mode 100755
index 0000000..7c8e5c7
--- /dev/null
+++ b/exam01/rendu/ft_split/ft_split.c
@@ -0,0 +1,72 @@
+/* ************************************************************************** */
+/* */
+/* ::: :::::::: */
+/* ft_split.c :+: :+: :+: */
+/* +:+ +:+ +:+ */
+/* By: exam <marvin@42.fr> +#+ +:+ +#+ */
+/* +#+#+#+#+#+ +#+ */
+/* Created: 2019/07/12 18:35:38 by exam #+# #+# */
+/* Updated: 2019/07/12 19:27:00 by exam ### ########.fr */
+/* */
+/* ************************************************************************** */
+
+#include <stdlib.h>
+
+#define ISSEP(c) (c == ' ' || c == '\n' || c == '\t')
+
+int count_segment(char *str)
+{
+ int counter;
+
+ counter = 0;
+ while (*str)
+ {
+ if (!ISSEP(*str))
+ {
+ counter++;
+ while (*str && !ISSEP(*str))
+ str++;
+ if (!*str)
+ break;
+ }
+ str++;
+ }
+ return (counter);
+}
+
+char **ft_split(char *str)
+{
+ char **split;
+ char *tmp;
+ int i;
+ int j;
+ int segments;
+
+ segments = count_segment(str);
+ split = (char**)malloc(sizeof(char*) * segments + 1);
+ if (split == NULL)
+ return (NULL);
+ j = 0;
+ while (j < segments)
+ {
+ if (ISSEP(*str))
+ {
+ str++;
+ continue;
+ }
+ i = 0;
+ while (!ISSEP(str[i]))
+ i++;
+ tmp = (char*)malloc(sizeof(char) * i + 1);
+ if (tmp == NULL)
+ return (NULL);
+ i = 0;
+ while (!ISSEP(*str))
+ tmp[i++] = *str++;
+ tmp[i] = '\0';
+ split[j] = tmp;
+ j++;
+ }
+ split[j] = NULL;
+ return (split);
+}