blob: c41547aa8e8a78ca5871602a7adee6e9b7fda968 (
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
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
|
#include <string.h>
#include <stdlib.h>
#include <stdio.h>
#include <ctype.h>
char * alloc_concat(char * first, char * second)
{
int flen = strlen(first);
int slen = strlen(second);
char * ret = malloc(flen + slen + 1);
memcpy(ret, first, flen);
memcpy(ret+flen, second, slen+1);
return ret;
}
char * alloc_concat_m(int num_parts, char ** parts)
{
int total = 0;
for (int i = 0; i < num_parts; i++) {
total += strlen(parts[i]);
}
char * ret = malloc(total + 1);
*ret = 0;
for (int i = 0; i < num_parts; i++) {
strcat(ret, parts[i]);
}
return ret;
}
long file_size(FILE * f)
{
fseek(f, 0, SEEK_END);
long fsize = ftell(f);
fseek(f, 0, SEEK_SET);
return fsize;
}
char * strip_ws(char * text)
{
while (*text && (!isprint(*text) || isblank(*text)))
{
text++;
}
char * ret = text;
text = ret + strlen(ret) - 1;
while (text > ret && (!isprint(*text) || isblank(*text)))
{
*text = 0;
text--;
}
return ret;
}
char * split_keyval(char * text)
{
while (*text && !isblank(*text))
{
text++;
}
if (!*text) {
return text;
}
*text = 0;
return text+1;
}
|