-
Notifications
You must be signed in to change notification settings - Fork 3
Open
Labels
enhancementNew feature or requestNew feature or requesthelp wantedExtra attention is neededExtra attention is needed
Description
This enhancement is for later on, but is created as a issue so that it does not get saturated over time.
Problem:
Some string functions currently or in future accepts parameter as const char str
which works for static character arrays (strings) but fails on dynamically allocated character arrays (dynamic strings).
Solution:
Define function overloads for this.
How? :
void str_some_static_arg_func(const char str[])
void str_is_some_static_arg_func(const char * str)
Metadata
Metadata
Assignees
Labels
enhancementNew feature or requestNew feature or requesthelp wantedExtra attention is neededExtra attention is needed