I am not able to use int8_t*
type inside the strlen()
function, it gives error like
invalid conversion from int8_t* to const char*`
Please help me, how to resolve this issue?
If I change the type from int8_t*
to char*
then it is working fine, but I can't use char*
as per my project coding guidelines I have to use either int8_t
or uint8_t
, so please help me to resolve this issue.