1 /* 2 * Copyright (c) 2006-2018, RT-Thread Development Team 3 * 4 * SPDX-License-Identifier: Apache-2.0 5 * 6 * Change Logs: 7 * Date Author Notes 8 * 2010-03-22 Bernard first version 9 */ 10 #ifndef __FINSH_PARSER_H__ 11 #define __FINSH_PARSER_H__ 12 13 #include <finsh.h> 14 15 int finsh_parser_init(struct finsh_parser* self); 16 void finsh_parser_run(struct finsh_parser* self, const uint8_t* string); 17 18 #endif 19