diff options
author | Mike Frysinger | 2009-04-07 06:03:22 +0000 |
---|---|---|
committer | Mike Frysinger | 2009-04-07 06:03:22 +0000 |
commit | a4f331d3c3ea5b358613992a48556cc9cbfdf139 (patch) | |
tree | 316143ec21a1efd2eb7e135121134c0b8b86221e /shell/match.h | |
parent | 6c9be7f4518bf5594f5b9aaf981ed5dcc4a6939c (diff) | |
download | busybox-a4f331d3c3ea5b358613992a48556cc9cbfdf139.zip busybox-a4f331d3c3ea5b358613992a48556cc9cbfdf139.tar.gz |
implement support for parameter substitution via #/% operators
Diffstat (limited to 'shell/match.h')
-rw-r--r-- | shell/match.h | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/shell/match.h b/shell/match.h new file mode 100644 index 0000000..863f525 --- /dev/null +++ b/shell/match.h @@ -0,0 +1,22 @@ +/* match.h - interface to shell ##/%% matching code */ + +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; + } +} |