-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathstrcov.c
143 lines (134 loc) · 2.8 KB
/
strcov.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
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
/*
* This file is part of the Advance project.
*
* Copyright (C) 2002, 2004 Andrea Mazzoleni
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 2 of the License, or
* (at your option) any later version.
*
* This program 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 General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software
* Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
*/
#include "portable.h"
#include "strcov.h"
/**
* Match one string with a shell pattern expression.
* \param pattern Pattern with with the globbing * and ? chars.
* \param str String to compare,
* \return
* - ==0 match
* - !=0 don't match
*/
int striwildcmp(const char* pattern, const char* str)
{
while (*str && *pattern) {
if (*pattern == '*') {
++pattern;
while (*str) {
if (striwildcmp(pattern, str)==0) return 0;
++str;
}
} else if (*pattern == '?') {
++str;
++pattern;
} else {
if (toupper(*str) != toupper(*pattern))
return 1;
++str;
++pattern;
}
}
while (*pattern == '*')
++pattern;
if (!*str && !*pattern)
return 0;
return 1;
}
/**
* Convert a string to a unsigned.
* \param s String to convert.
* \param e First not numerical char detected.
* \return 0 if string contains a non digit char.
*/
unsigned strdec(const char* s, const char** e)
{
unsigned v = 0;
while (*s) {
if (!isdigit(*s)) {
*e = s;
return 0;
}
v *= 10;
v += *s - '0';
++s;
}
*e = s;
return v;
}
/**
* Convert a hex string to a unsigned.
* \param s String to convert.
* \param e First not numerical char detected.
* \return converted value.
*/
unsigned strhex(const char* s, const char** e)
{
unsigned v = 0;
while (*s) {
if (!isxdigit(*s)) {
break;
}
v *= 16;
if (*s>='0' && *s<='9')
v += *s - '0';
else
v += toupper(*s) - 'A' + 10;
++s;
}
if (e)
*e = s;
return v;
}
/**
* Convert a hex string to a vector of bytes.
* \param dst Destination vector.
* \param s String to convert.
* \param e First not numerical char detected.
*/
void strvhex(unsigned char* dst, const char* s, const char** e)
{
unsigned i;
i = 0;
while (*s) {
unsigned v;
if (!isxdigit(*s)) {
break;
}
if (*s>='0' && *s<='9')
v = *s - '0';
else
v = toupper(*s) - 'A' + 10;
dst[i] = v * 16;
++s;
if (!isxdigit(*s)) {
break;
}
if (*s>='0' && *s<='9')
v = *s - '0';
else
v = toupper(*s) - 'A' + 10;
dst[i] += v;
++i;
++s;
}
if (e)
*e = s;
}