blob: a4c76605c7649d4048120e33b9c4043b1d522e60 [file] [log] [blame]
/*******************************************************************************
* 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