So here are two functions that do almost the same thing.
How would you name each one, if you had to include both in your project?
void s
1st: char *copylo(char *dst, const char *src); (no allocations!) 2nd: char *lowerize(char *data);
char *copylo(char *dst, const char *src);
char *lowerize(char *data);