summaryrefslogtreecommitdiff
path: root/release/src/router/busybox/shell/match.h
blob: 3fc4de340c7f53996bad658d6d10b97f6a0ff222 (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
/* match.h - interface to shell ##/%% matching code */

PUSH_AND_SET_FUNCTION_VISIBILITY_TO_HIDDEN

typedef char *(*scan_t)(char *string, char *match, bool zero);

char *scanleft(char *string, char *match, bool zero);
char *scanright(char *string, char *match, bool zero);

static inline scan_t pick_scan(char op1, char op2, bool *zero)
{
	/* #  - scanleft
	 * ## - scanright
	 * %  - scanright
	 * %% - scanleft
	 */
	if (op1 == '#') {
		*zero = true;
		return op1 == op2 ? scanright : scanleft;
	} else {
		*zero = false;
		return op1 == op2 ? scanleft : scanright;
	}
}

POP_SAVED_FUNCTION_VISIBILITY