C/Napisy: Różnice pomiędzy wersjami

Usunięta treść Dodana treść
→‎Wczytywanie: optymalizacja
→‎Metody: optymalizacja
Linia 568:
string new_char = create_string("");
new_char->c = *new_string;
new_char->next ^= NULLnew_char->next;
str->next = new_char;
}
Linia 584:
struct string_data new_char;
new_char->c = *new_string;
new_char->next ^= NULLnew_char->next;
tmp->next = new_char;
}
Linia 601:
{
if(*s == NULL)return;
if((*s)->next)free_string((*s)->next);
free(*s);
*s ^= NULL*s;
}
</source>