-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path_strtok.c
109 lines (102 loc) · 2.46 KB
/
_strtok.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
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
#include "shell.h"
/**
* t_strlen - returns token's string length for mallocing
* @str: a token
* @pos: index position in user's command typed into shell
* @delm: delimeter (e.g. " ");
* Return: token length
*/
int t_strlen(char *str, int pos, char delm)
{
int len = 0;
while ((str[pos] != delm) && (str[pos] != '\0'))
{
pos++;
len++;
}
return (len);
}
/**
* t_size - returns number of delim ignoring continuous delim
* @str: user's command typed into shell
* @delm: delimeter (e.g. " ");
* Return: number of delims so that (num token = delims + 1)
*/
int t_size(char *str, char delm)
{
int i = 0, num_delm = 0;
while (str[i] != '\0')
{
if ((str[i] == delm) && (str[i + 1] != delm))
{
/* handle continuous delims */
num_delm++;
}
if ((str[i] == delm) && (str[i + 1] == '\0'))
{
/*handle continuous delims after full command */
num_delm--;
}
i++;
}
return (num_delm);
}
/**
* ignore_delm - returns a version of string without preceeding delims
* @str: string
* @delm: delimiter (e.g. " ")
* Return: new string (e.g. " ls -l" --> "ls -l")
*/
char *ignore_delm(char *str, char delm)
{
while (*str == delm)
str++;
return (str);
}
/**
* _str_tok - tokenizes a string and returns an array of tokens
* @str: user's command typed into shell
* @delm: delimeter (e.g. " ");
* Return: an array of tokens (e.g. {"ls", "-l", "/tmp"}
*/
char **_str_tok(char *str, char *delm)
{
int buffsize = 0, p = 0, si = 0, i = 0, len = 0, se = 0, t = 0;
char **toks = NULL, d_ch;
d_ch = delm[0];
/* creates new version of string ignoring all delims infront*/
str = ignore_delm(str, d_ch);
/* malloc ptrs to store array of tokens (buffsize + 1), and NULL ptr */
buffsize = t_size(str, d_ch);
toks = malloc(sizeof(char *) * (buffsize + 2));
if (toks == NULL)
return (NULL);
while (str[se] != '\0') /* find string ending index */
se++;
while (si < se)
{ /* malloc lengths for each token ptr in array */
if (str[si] != d_ch)
{
len = t_strlen(str, si, d_ch);
toks[p] = malloc(sizeof(char) * (len + 1));
if (toks[p] == NULL)
return (NULL);
i = 0;
while ((str[si] != d_ch) && (str[si] != '\0'))
{
toks[p][i] = str[si];
i++;
si++;
}
toks[p][i] = '\0'; /* null terminate at end*/
t++;
}
/* handle repeated delimeters; increment ptr after ("ls __-l")*/
if (si < se && (str[si + 1] != d_ch && str[si + 1] != '\0'))
p++;
si++;
}
p++;
toks[p] = NULL; /* set last array ptr to NULL */
return (toks);
}