This commit is contained in:
Radovan Kofira 2020-11-05 20:37:37 +01:00
parent a078a4f429
commit 31a5eceba5

View File

@ -28,10 +28,10 @@ struct car* add_car(struct car* first,const char* target) {
void print_train(struct car* first) {
struct car* this=first;
while(this->next!=NULL){
/* while(this->next!=NULL){
printf("%s",this->value);
this=this->next;
}
}*/
}
void cancel_train(struct car* first) {