yuezonghe | c78e2ef | 2025-02-13 17:57:46 -0800 | [diff] [blame^] | 1 | /*******************************************************************************
|
| 2 | * Author : author
|
| 3 | * Version : V1.0
|
| 4 | * Date : 2021-07-27
|
| 5 | * Description : util_string.h
|
| 6 | ********************************************************************************/
|
| 7 |
|
| 8 | #ifndef __UTIL_STRING_H__
|
| 9 | #define __UTIL_STRING_H__
|
| 10 |
|
| 11 | /********************************* Include File ********************************/
|
| 12 | #include <stdint.h>
|
| 13 |
|
| 14 |
|
| 15 | /********************************* Macro Definition ****************************/
|
| 16 |
|
| 17 |
|
| 18 | /********************************* Type Definition *****************************/
|
| 19 |
|
| 20 |
|
| 21 | /********************************* Function Prototype Definition ***************/ |
| 22 | void util_hex2str(uint8_t *in, uint16_t in_len, char *out);
|
| 23 | char *util_strtok(char *str, const char *wstr);
|
| 24 |
|
| 25 |
|
| 26 | #endif
|