-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathsplitarguments.c
73 lines (62 loc) · 1.27 KB
/
splitarguments.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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
#include "simple_shell.h"
/**
* get_tokens - Breaks input into a series of tokens using a string
* delimiter and store them in an array of strings
* @buffer: getline malloc'd user input
* Return: A pointer to an array of strings
*/
char **get_tokens(char *buffer)
{
char **token_list = malloc(sizeof(char *) * countarg(buffer));
char *token;
int index = 0;
if (buffer == NULL || token_list == NULL)
{
free_function(2, token_list);
return (NULL);
}
token = strtok(buffer, DELIMITER);
while (token != NULL)
{
token_list[index] = _strdup(token);
if (token_list[index] == NULL)
{
free_function(2, token_list);
return (NULL);
}
token = strtok(NULL, DELIMITER);
index++;
}
token_list[index] = token;
return (token_list);
}
/**
* countarg - Counts the number of user input array arguments
* @buffer: getline malloc'd user input
* Return: number of arguments
*/
int countarg(char *buffer)
{
int i, count, flag, j;
char *delimiter = " :";
flag = i = 0;
count = 1;
if (buffer == NULL)
return (count);
while (buffer[i] != '\0')
{
for (j = 0; delimiter[j] != '\0'; j++)
{
if (buffer[i] == delimiter[j] && flag == 0)
{
count++;
flag = 1;
break;
}
}
if (delimiter[j] == '\0')
flag = 0;
i++;
}
return (count + 1);
}