blob: 74f8ce4fb2a24a3cb4ea809fe39864a85c99287b (
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
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
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
|
/*
* Ouroboros - Copyright (C) 2016 - 2024
*
* Handy utilities
*
* Dimitri Staessens <dimitri@ouroboros.rocks>
* Sander Vrijders <sander@ouroboros.rocks>
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public License
* version 2.1 as published by the Free Software Foundation.
*
* This library is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
* Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public
* License along with this library; if not, write to the Free Software
* Foundation, Inc., http://www.fsf.org/about/contact/.
*/
#define _POSIX_C_SOURCE 200809L
#include <ouroboros/utils.h>
#include <ctype.h>
#include <stdlib.h>
#include <string.h>
int bufcmp(const buffer_t * a,
const buffer_t * b)
{
if (a->len != b->len)
return a->len < b->len ? -1 : 1;
return memcmp(a->data, b->data, a->len);
}
int n_digits(unsigned i)
{
int n = 1;
while (i > 9) {
++n;
i /= 10;
}
return n;
}
char * path_strip(const char * src)
{
char * dst;
if (src == NULL)
return NULL;
dst = (char *) src + strlen(src);
while (dst > src && *dst != '/')
--dst;
if (*dst == '/')
++dst;
return dst;
}
char * trim_whitespace(char * str)
{
char * end;
while (isspace((unsigned char) *str))
str++;
if (*str == '\0')
return str;
/* Trim trailing space */
end = str + strlen(str) - 1;
while (end > str && isspace((unsigned char)*end))
*end-- = '\0';
return str;
}
size_t argvlen(const char ** argv)
{
size_t argc = 0;
if (argv == NULL)
return 0;
while (*argv++ != NULL)
argc++;
return argc;
}
void argvfree(char ** argv)
{
char ** argv_dup;
if (argv == NULL)
return;
argv_dup = argv;
while (*argv_dup != NULL)
free(*(argv_dup++));
free(argv);
}
char ** argvdup(char ** argv)
{
int argc = 0;
char ** argv_dup = argv;
int i;
if (argv == NULL)
return NULL;
while (*(argv_dup++) != NULL)
argc++;
argv_dup = malloc((argc + 1) * sizeof(*argv_dup));
if (argv_dup == NULL)
return NULL;
for (i = 0; i < argc; ++i) {
argv_dup[i] = strdup(argv[i]);
if (argv_dup[i] == NULL) {
argvfree(argv_dup);
return NULL;
}
}
argv_dup[argc] = NULL;
return argv_dup;
}
|