Replace bughy implementation of function 'remove_all()'.

Counterexample for old implementation:
    char str[] = "aaa";
    remove_all(str, 'a');
    printf("%s\n", str); // displays "a" if we're lucky,
                         //or crashes if we're not.
This commit is contained in:
Ivan Mikhnovich 2021-05-23 19:24:42 +03:00
parent 7892511501
commit 0c268f5fc9

View file

@ -51,13 +51,13 @@ void remove_all(char *str, char to_remove) {
char *read = str;
char *write = str;
while (*read) {
if (*read == to_remove) {
read++;
if (*read != to_remove) {
*write = *read;
++write;
}
read++;
write++;
++read;
}
*write = '\0';
}
//opens process *cmd and stores output in *output