This commit is contained in:
Džubara 2024-03-12 09:35:39 +01:00
parent 05e0f0b8eb
commit 48111bf986

View File

@ -126,7 +126,4 @@ list_t *reverse_list(list_t *list) {
void delete_list(list_t *list) { void delete_list(list_t *list) {
free(list); free(list);
} }
int main(){
return 0;
}