I have a C function, which takes a string called \'buffer\', and parses it, it will match keywords and use that to assign values in a structure.
However, some keywor
have a look at a simple ANSI C solution like:
void removeSubstring(char *s,const char *toremove) { while( s=strstr(s,toremove) ) memmove(s,s+strlen(toremove),1+strlen(s+strlen(toremove))); }