add
This commit is contained in:
parent
dabe009eae
commit
9b936bc616
@ -24,7 +24,7 @@ struct car* add_car(struct car* first,const char* target) {
|
||||
}
|
||||
|
||||
void print_train(struct car* first) {
|
||||
for(struct car* this == first; this != NULL; this = this->next){
|
||||
for(struct car* this = first; this != NULL; this = this->next){
|
||||
printf("%s\n", this->value);
|
||||
}
|
||||
/*struct car* this = first;
|
||||
|
Loading…
Reference in New Issue
Block a user