usaa24/cv4/a_train.c

19 lines
287 B
C
Raw Normal View History

2024-10-16 08:23:13 +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;
}