File: wild.c

package info (click to toggle)
fvwm 1%3A2.6.8-1
  • links: PTS
  • area: main
  • in suites: bullseye, buster
  • size: 15,804 kB
  • sloc: ansic: 145,770; xml: 17,093; perl: 7,302; sh: 4,921; makefile: 1,094; yacc: 688; lex: 187; sed: 11
file content (93 lines) | stat: -rw-r--r-- 2,129 bytes parent folder | download | duplicates (3)
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
/* -*-c-*- */
/* 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, see: <http://www.gnu.org/licenses/>
 */

#include "config.h"

#include <stdio.h>

#include "wild.h"

/*
 *      Does `string' match `pattern'? '*' in pattern matches any sub-string
 *      (including the null string) '?' matches any single char. For use
 *      by filenameforall. Note that '*' matches across directory boundaries
 *
 *      This code donated by  Paul Hudson <paulh@harlequin.co.uk>
 *      It is public domain, no strings attached. No guarantees either.
 *
 */
int matchWildcards(const char *pattern, const char *string)
{
	if(string == NULL)
	{
		if(pattern == NULL)
			return 1;
		else if(strcmp(pattern,"*")==0)
			return 1;
		else
			return 0;
	}
	if(pattern == NULL)
		return 1;

	while (*string && *pattern)
	{
		if (*pattern == '?')
		{
			/* match any character */
			pattern += 1;
			string += 1;
		}
		else if (*pattern == '*')
		{
			/* see if the rest of the pattern matches any trailing
			 * substring of the string. */
			pattern += 1;
			if (*pattern == 0)
			{
				return 1; /* trailing * must match rest */
			}
			while (*string)
			{
				if (matchWildcards(pattern,string))
				{
					return 1;
				}
				string++;
			}
			return 0;
		}
		else
		{
			if (*pattern == '\\')
			{
				/* has strange, but harmless effects if the
				 * last character is a '\\' */
				pattern ++;
			}
			if  (*pattern++ != *string++)
			{
				return 0;
			}
		}
	}
	if((*pattern == 0)&&(*string == 0))
		return 1;
	if((*string == 0)&&(strcmp(pattern,"*")==0))
		return 1;

	return 0;
}