I have this:
char* original = \"html content\";
And want to insert a new
char* mycontent = \"newhtmlinsert\";
Take a look at strstr, strcat and other cstring/string.h functions.
Make sure your char arrays are large enough to hold concatenated strings. Like, you may want to do the following:
char
char neworiginal[1024];
etc.