Here's my function call:
removeTags(*buf, bufSize);
which calls:
void removeTags(char* dataBlock, unsigned long size)
{
char* start = dataBlock;
char* end = dataBlock + size;
while(start < end)
{
//How do I replace the characters "\abc" with just nothing, ''.
}
I want to replace any instances of the characters \abc with nothing.