-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstrtostrs.c
45 lines (43 loc) · 838 Bytes
/
strtostrs.c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
#include "main.h"
/**
* strtostrs - String to array of strings
* @str: Input string
* @delim: Delimitor
*
* Return: Array of strings
*/
char **strtostrs(const char *str, char *delim)
{
char **strs = NULL;
char *token;
char copy_str[MAX_COMMAND_LENGTH];
int i = 0;
strs = (char **)malloc(sizeof(char *));
if (strs == NULL)
{
perror("malloc");
exit(EXIT_FAILURE);
}
strncpy(copy_str, str, sizeof(copy_str));
copy_str[sizeof(copy_str) - 1] = '\0';
token = strtok(copy_str, delim);
while (token != NULL)
{
strs[i] = strdup(token);
if (strs[i] == NULL)
{
perror("strdup");
exit(EXIT_FAILURE);
}
i++;
strs = (char **)realloc(strs, (i + 1) * sizeof(char *));
if (strs == NULL)
{
perror("realloc");
exit(EXIT_FAILURE);
}
token = strtok(NULL, delim);
}
strs[i] = NULL;
return (strs);
}