aboutsummaryrefslogtreecommitdiff
path: root/shell/match.h
diff options
context:
space:
mode:
Diffstat (limited to 'shell/match.h')
-rw-r--r--shell/match.h22
1 files changed, 22 insertions, 0 deletions
diff --git a/shell/match.h b/shell/match.h
new file mode 100644
index 000000000..863f52539
--- /dev/null
+++ b/shell/match.h
@@ -0,0 +1,22 @@
1/* match.h - interface to shell ##/%% matching code */
2
3typedef char *(*scan_t)(char *string, char *match, bool zero);
4
5char *scanleft(char *string, char *match, bool zero);
6char *scanright(char *string, char *match, bool zero);
7
8static inline scan_t pick_scan(char op1, char op2, bool *zero)
9{
10 /* # - scanleft
11 * ## - scanright
12 * % - scanright
13 * %% - scanleft
14 */
15 if (op1 == '#') {
16 *zero = true;
17 return op1 == op2 ? scanright : scanleft;
18 } else {
19 *zero = false;
20 return op1 == op2 ? scanleft : scanright;
21 }
22}