mirror of
https://github.com/sheumann/hush.git
synced 2025-01-03 00:31:16 +00:00
7306727d1b
Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
32 lines
713 B
C
32 lines
713 B
C
/* match.h - interface to shell ##/%% matching code */
|
|
|
|
#ifndef SHELL_MATCH_H
|
|
#define SHELL_MATCH_H 1
|
|
|
|
PUSH_AND_SET_FUNCTION_VISIBILITY_TO_HIDDEN
|
|
|
|
typedef char *(*scan_t)(char *string, char *match, bool match_at_left);
|
|
|
|
char *scanleft(char *string, char *match, bool match_at_left);
|
|
char *scanright(char *string, char *match, bool match_at_left);
|
|
|
|
static inline scan_t pick_scan(char op1, char op2, bool *match_at_left)
|
|
{
|
|
/* # - scanleft
|
|
* ## - scanright
|
|
* % - scanright
|
|
* %% - scanleft
|
|
*/
|
|
if (op1 == '#') {
|
|
*match_at_left = true;
|
|
return op1 == op2 ? scanright : scanleft;
|
|
} else {
|
|
*match_at_left = false;
|
|
return op1 == op2 ? scanleft : scanright;
|
|
}
|
|
}
|
|
|
|
POP_SAVED_FUNCTION_VISIBILITY
|
|
|
|
#endif
|