I\'m trying to split a string into tokens but somewhat recursively. I am trying to parse:
\"content=0&website=Google\"
so that I have a
I recommend something similar to the following:
char t_str[100]; strncpy(t_str, contents, 100); //now strtok() on t_str, original contents will be preserved