I'm currently rearranging all files of the project.
This is because a circular reference appeared in it:
1 myMap.c included "myRobot.c" to enable void Map_Robot_Draw(ROBOT& R) compilation.
2 myRobot.c included "mySimulation.c" because it calls Simu_Step() function.
3 mySimulation.c included "myMap.c" because it needs Map_Cell...() family functions.
So I'm splitting all files into a header (.h) with only structures declarations and functions signatures and a source (.c) with data instances and codes.
See you.
Miki.