ive got static struct ARP_entry ARP_table[ARP_TABLE_SIZE]; in start.c and I want to pass this table to a fill() function in table.c
ive got #include "table.c" in start.c, cause i need it for that function, right? if i include start.c in table.c it gets into some weird loop or what. Any suggestion?
The point is to declare the table in the start.c, fill it wit the information in table.c, and send it away from start.c
Thanks in advance
start.c
table.c
table.h