22 lines
275 B
C
22 lines
275 B
C
#include <stdio.h>
|
|
#include "stdlib.h"
|
|
#include <string.h>
|
|
#define SIZE 100
|
|
#include "a_station.h"
|
|
|
|
struct station {
|
|
struct car** tracks;
|
|
int track_count;
|
|
};
|
|
|
|
struct car {
|
|
int capacity;
|
|
char value[SIZE];
|
|
struct car* next;
|
|
}
|
|
|
|
|
|
|
|
int main() {
|
|
return 0;
|
|
} |