-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path_trim_white_space.c
115 lines (110 loc) · 2.08 KB
/
_trim_white_space.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
110
111
112
113
114
115
#include "shell.h"
/**
* _get_length_without_space_dup - function that returns
* length of given string excluding duplicated spaces
*
* @line: to return it's length without duplicate
* @end: the end of the line
* Return: length
*/
size_t _get_length_without_space_dup(const char *line, size_t end)
{
size_t start, len;
int is_space;
start = 0;
is_space = 0;
len = 0;
while (start < end)
{
if ((line[start] == ' ' ||
line[start] == '\t') &&
!is_space)
{
len++;
is_space = 1;
}
else if (line[start] != ' ' &&
line[start] != '\t')
{
is_space = 0;
len++;
}
start++;
}
return (len);
}
/**
* _get_newline_without_space_dup - function returns
* line after removing it's duplicated space
*
* @line: line to check against
* @end: the end of the string exculding last spaces
* Return: new string
*/
char *_get_newline_without_space_dup(const char *line, size_t end)
{
size_t start, index;
int is_space;
char *newline;
start = 0;
is_space = 0;
index = 0;
newline = malloc(sizeof(char) *
(_get_length_without_space_dup(line, end + 1) + 1));
if (!newline)
return (NULL);
while (start <= end)
{
if ((line[start] == ' ' ||
line[start] == '\t') &&
!is_space)
{
newline[index] = ' ';
index++;
is_space = 1;
}
else if (line[start] != ' ' &&
line[start] != '\t')
{
is_space = 0;
newline[index] = line[start];
index++;
}
start++;
}
newline[index] = 0;
return (newline);
}
/**
* _trim_white_space - function that returns new line
* with space removed from it
*
* @line: to check against
* Return: newline without space duplicates
*/
char *_trim_white_space(const char *line)
{
size_t left, right;
char *s;
left = 0;
right = _strlen(line);
if (!right)
{
s = malloc(sizeof(char));
*s = 0;
return (s);
}
right -= 1;
while (line[left] == ' ' || line[left] == '\t')
left++;
while (right > left &&
(line[right] == ' ' || line[right] == '\t'))
right--;
if (left > right)
{
s = malloc(sizeof(char));
*s = 0;
return (s);
}
return (_get_newline_without_space_dup(line + left, right - left));
}