File: match.c

package info (click to toggle)
9base 1%3A2-8
  • links: PTS
  • area: main
  • in suites: lenny
  • size: 2,120 kB
  • ctags: 3,522
  • sloc: ansic: 34,477; yacc: 1,623; makefile: 373; sh: 48; asm: 8
file content (49 lines) | stat: -rw-r--r-- 783 bytes parent folder | download | duplicates (10)
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
#include	"mk.h"

int
match(char *name, char *template, char *stem, Shell *sh)
{
	Rune r;
	int n;

	while(*name && *template){
		n = chartorune(&r, template);
		if (PERCENT(r))
			break;
		while (n--)
			if(*name++ != *template++)
				return 0;
	}
	if(!PERCENT(*template))
		return 0;
	n = strlen(name)-strlen(template+1);
	if (n < 0)
		return 0;
	if (strcmp(template+1, name+n))
		return 0;
	strncpy(stem, name, n);
	stem[n] = 0;
	if(*template == '&')
		return !sh->charin(stem, "./");
	return 1;
}

void
subst(char *stem, char *template, char *dest)
{
	Rune r;
	char *s;
	int n;

	while(*template){
		n = chartorune(&r, template);
		if (PERCENT(r)) {
			template += n;
			for (s = stem; *s; s++)
				*dest++ = *s;
		} else
			while (n--)
				*dest++ = *template++;
	}
	*dest = 0;
}