1 /* 2 * Copyright (c) 2006-2021, RT-Thread Development Team 3 * 4 * SPDX-License-Identifier: Apache-2.0 5 * 6 * Change Logs: 7 * Date Author Notes 8 * 2022-05-25 WangQiang the first verion for msh parse 9 */ 10 11 #ifndef MSH_PARSE_H 12 #define MSH_PARSE_H 13 14 #include <rtdef.h> 15 16 rt_bool_t msh_isint(char *strvalue); 17 rt_bool_t msh_ishex(char *strvalue); 18 int msh_strtohex(char *strvalue); 19 20 #endif /* MSH_PARSE_H */ 21