shell: internal api update: wildcards

Mark global wildcard functions with z_ prefix.

Signed-off-by: Jakub Rzeszutko <jakub.rzeszutko@nordicsemi.no>
This commit is contained in:
Jakub Rzeszutko 2020-12-06 11:47:36 +01:00 committed by Carles Cufí
commit 58c7114c17
4 changed files with 14 additions and 14 deletions

View file

@ -316,7 +316,7 @@ const struct shell_static_entry *shell_get_last_command(
if (IS_ENABLED(CONFIG_SHELL_WILDCARD)) {
/* ignore wildcard argument */
if (shell_wildcard_character_exist(argv[*match_arg])) {
if (z_shell_has_wildcard(argv[*match_arg])) {
(*match_arg)++;
continue;
}