void splitpath(const char *path, char *directory, char *filename, char *extension)
{
...
char *
str_replace(char *str, char *old, char *new) {
int i, count = 0;
...
C str_replace
Pretty weak first pass at a...
void splitpath(const char *path, char *directory, char *filename, char *extension)
{
...
char *
str_replace(char *str, char *old, char *new) {
int i, count = 0;
...
Pretty weak first pass at a...
I am new to C. Following co...