Initializacia

This commit is contained in:
Kozar 2024-11-08 13:23:35 +00:00
parent 792ea488bf
commit b33f7a0db3

View File

@ -10,12 +10,20 @@ struct station* create_station(){
}
void destroy_station(struct station* station){
for (int i = 0; i < station->track_count; i++) {
struct car* current = station->tracks[i];
while (current) {
struct car* temp = current;
current = current->next;
free(temp);
}
}
free(station->tracks);
free(station);
}
int select_track(struct station* station, const char* target){
return 0;
}
void add_target_capacity(struct station* station,const char* target, int capacity){
}