blob: ebae1e6247030f94e3947a5ce6951c0573705aca (
plain)
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
|
#include <ctype.h>
#include <string.h>
#include <util.h>
char *
ltrim(char *s)
{
while (isspace(*s))
s++;
return s;
}
char *
rtrim(char *s)
{
char *back = s + strlen(s);
while (isspace(*--back))
;
*(back + 1) = '\0';
return s;
}
char *
trim(char *s)
{
return rtrim(ltrim(s));
}
char *
remove_spaces(char *str)
{
int count = 0;
for (int i = 0; str[i]; i++)
if (!isspace(str[i]))
str[count++] = str[i];
str[count] = '\0';
return str;
}
|