forked from osm2pgsql-dev/osm2pgsql
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathwildcmp.cpp
More file actions
34 lines (28 loc) · 799 Bytes
/
Copy pathwildcmp.cpp
File metadata and controls
34 lines (28 loc) · 799 Bytes
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
/* Wildcard matching.
*/
/**
* Case sensitive wild card match with a string.
* * matches any string or no character.
* ? matches any single character.
* anything else etc must match the character exactly.
*
* Returns if a match was found.
*/
bool wildMatch(char const *first, char const *second)
{
// Code borrowed from
// http://www.geeksforgeeks.org/wildcard-character-matching/
if (*first == '\0' && *second == '\0') {
return true;
}
if (*first == '*' && *(first + 1) != '\0' && *second == '\0') {
return false;
}
if (*first == '?' || *first == *second) {
return wildMatch(first + 1, second + 1);
}
if (*first == '*') {
return wildMatch(first + 1, second) || wildMatch(first, second + 1);
}
return false;
}