1 /*
2  * Copyright (c) 2024 Google, Inc.
3  *
4  * SPDX-License-Identifier: Apache-2.0
5  */
6 
7 #ifndef __ZEPHYR_CUSTOM_SHELL_H
8 #define __ZEPHYR_CUSTOM_SHELL_H
9 
10 #define CUSTOM_SHELL_PREFIX "[CUSTOM_PREFIX]"
11 
12 #undef shell_fprintf
13 
14 #define shell_fprintf(sh, color, fmt, ...)                                                         \
15 	shell_fprintf_impl(sh, color, CUSTOM_SHELL_PREFIX fmt, ##__VA_ARGS__)
16 
17 #endif /* __ZEPHYR_CUSTOM_SHELL_H */
18