How am I doing this wrong. It seems to be replacing my whole string with either \' or spaces.
My struct looks like thisCode:for (i = 0; i < sizeof(id3v1.artist); i++)
{
if (strcmp(id3v1.artist + i, "\"") == TRUE)
{
memcpy(id3v1.artist + i, "\'", sizeof(char));
}
}
Code:struct id3v1
{
char title[30];
char artist[30];
char album[30];
char year[4];
char comment[30];
BYTE genre;
} id3v1;
