blob: fdbcd9d97cf92a5d8e189b77a20d66901074946f (
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
|
/*
* 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 <stdlib.h>
#include <string.h>
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;
}
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;
}
|