RT-Thread RTOS 1.2.0
An open source embedded real-time operating system
载入中...
搜索中...
未找到
msh_parse.h
浏览该文件的文档.
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
16rt_bool_t msh_isint(char *strvalue);
17rt_bool_t msh_ishex(char *strvalue);
18int msh_strtohex(char *strvalue);
19
20#endif /* MSH_PARSE_H */
int msh_strtohex(char *strvalue)
rt_bool_t msh_isint(char *strvalue)
rt_bool_t msh_ishex(char *strvalue)
int rt_bool_t