2010-03-22 07:49:57 +08:00
|
|
|
/*
|
2018-10-14 19:28:18 +08:00
|
|
|
* Copyright (c) 2006-2018, RT-Thread Development Team
|
2010-03-22 07:49:57 +08:00
|
|
|
*
|
2018-10-14 19:28:18 +08:00
|
|
|
* SPDX-License-Identifier: Apache-2.0
|
2010-03-22 07:49:57 +08:00
|
|
|
*
|
|
|
|
* Change Logs:
|
|
|
|
* Date Author Notes
|
|
|
|
* 2010-03-22 Bernard first version
|
|
|
|
*/
|
2009-07-03 06:48:23 +08:00
|
|
|
#ifndef __FINSH_PARSER_H__
|
|
|
|
#define __FINSH_PARSER_H__
|
|
|
|
|
|
|
|
#include <finsh.h>
|
|
|
|
|
|
|
|
int finsh_parser_init(struct finsh_parser* self);
|
2017-10-10 14:27:34 +08:00
|
|
|
void finsh_parser_run(struct finsh_parser* self, const uint8_t* string);
|
2009-07-03 06:48:23 +08:00
|
|
|
|
|
|
|
#endif
|