I'm trying to understand if there is any difference between:
bool String_Init(String *str, char * s, uint32_t len){};
and
bool String_Init(String *str, char *s, uint32_t len){};
Also,
const char * String_GetCString(const String * const str){};
and
const char *String_GetCString(const String * const str){};
Thank you!