usaa24/cv4/a_train.c

20 lines
292 B
C
Raw Normal View History

2024-10-24 16:53:07 +00:00
#include "a_train.h"
#include <stdio.h>
struct car* add_car(struct car* first,const char* target) {
return NULL;
}
void print_train(struct car* first) {
}
void cancel_train(struct car* first) {
}
struct car* clear_train(struct car* first, const char* target) {
return NULL;
}