This commit is contained in:
Oleksandr Vyshniakov 2025-11-12 20:33:28 +01:00
parent 26551e9f44
commit c5cde60d85

View File

@ -1,4 +1,7 @@
#include "a_station.h" #include "a_station.h"
#include <stdlib.h>
#include <string.h>
#include <stddef.h>
struct station* create_station() { struct station* create_station() {
struct station* s = calloc(1, sizeof(struct station)); struct station* s = calloc(1, sizeof(struct station));