Update cv4/a_train.c

This commit is contained in:
Viktor Daniv 2024-10-24 22:04:05 +00:00
parent c8c94295bf
commit 477d9f80cc

View File

@ -0,0 +1,18 @@
#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;
}