-
Notifications
You must be signed in to change notification settings - Fork 39
/
util.c
57 lines (50 loc) · 1.13 KB
/
util.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
#include "util.h"
#include <ctype.h>
#include <string.h>
char* trim(char *str)
{
char *left = str;
char *right = str + (strlen(str) - 1);
while (isspace(*left)) {
left++;
}
while (isspace(*right)) {
right--;
}
if (left == str) {
*++right = '\0';
}
else {
char *p = str;
while (left <= right) {
*p++ = *left++;
}
*p = '\0';
}
return str;
}
char* split(char *str, char delimiter)
{
char *p = strchr(str, delimiter);
if (p != NULL) {
*p = '\0';
return p + 1;
}
return NULL;
}
// this function will return a new alloced string
// with all escape chars prefixed with '\\'
char* escape(const char *str, char escape) {
const char escape_prefix = '\\';
const int len = strlen(str);
char *escaped_str = (char *) malloc(sizeof(char) * len * 2);
int i = 0, j = 0;
// use i <= len so that the last '\0' is also copied
for (; i <= len; i++) {
if (str[i] == escape) {
escaped_str[j++] = escape_prefix;
}
escaped_str[j++] = str[i];
}
return escaped_str;
}