aboutsummaryrefslogtreecommitdiff
path: root/shell/match.h
diff options
context:
space:
mode:
Diffstat (limited to 'shell/match.h')
-rw-r--r--shell/match.h5
1 files changed, 5 insertions, 0 deletions
diff --git a/shell/match.h b/shell/match.h
index 90597ee54..98ff8745a 100644
--- a/shell/match.h
+++ b/shell/match.h
@@ -1,5 +1,8 @@
1/* match.h - interface to shell ##/%% matching code */ 1/* match.h - interface to shell ##/%% matching code */
2 2
3#ifndef SHELL_MATCH_H
4#define SHELL_MATCH_H 1
5
3PUSH_AND_SET_FUNCTION_VISIBILITY_TO_HIDDEN 6PUSH_AND_SET_FUNCTION_VISIBILITY_TO_HIDDEN
4 7
5typedef char *(*scan_t)(char *string, char *match, bool match_at_left); 8typedef char *(*scan_t)(char *string, char *match, bool match_at_left);
@@ -24,3 +27,5 @@ static inline scan_t pick_scan(char op1, char op2, bool *match_at_left)
24} 27}
25 28
26POP_SAVED_FUNCTION_VISIBILITY 29POP_SAVED_FUNCTION_VISIBILITY
30
31#endif