| /*******************************************************************************
|
| * Author : author
|
| * Version : V1.0
|
| * Date : 2021-07-27
|
| * Description : util_string.h
|
| ********************************************************************************/
|
|
|
| #ifndef __UTIL_STRING_H__
|
| #define __UTIL_STRING_H__
|
|
|
| /********************************* Include File ********************************/
|
| #include <stdint.h>
|
|
|
|
|
| /********************************* Macro Definition ****************************/
|
|
|
|
|
| /********************************* Type Definition *****************************/
|
|
|
|
|
| /********************************* Function Prototype Definition ***************/ |
| void util_hex2str(uint8_t *in, uint16_t in_len, char *out);
|
| char *util_strtok(char *str, const char *wstr);
|
|
|
|
|
| #endif
|