Possible Duplicate:
Remove characters from a string in C
I'm creating a small todo application in C and I'd like to remove * then a space from a string I'm looping over each line then checking if the lineNumber is the one passed in to the function then I'd wondering how to remove the characters from that line, Heres the code where I loop over the lines
while (fgets(line, sizeof line, oldTodoFile)) {
len = strlen(line);
if (len && (line[len - 1] != '\n')) {} else {
lineNumber++;
if (lineNumber == todoNumber) {
// remove *[space]
} else {
fprintf(todoFile);
}
}