blob: a4c76605c7649d4048120e33b9c4043b1d522e60 [file] [log] [blame]
yuezonghec78e2ef2025-02-13 17:57:46 -08001/*******************************************************************************
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 ***************/
22void util_hex2str(uint8_t *in, uint16_t in_len, char *out);
23char *util_strtok(char *str, const char *wstr);
24
25
26#endif