/*It is a tradition to use CPP tricks to avoid parsing the same header file more than once*/ #ifndef WRITE_LOCATION_FILE_H # define WRITE_LOCATION_FILE_H #include "location.h" int write_location_file(char *lat, char *lon); int write_struct_location_file(struct location *lctn); #endif /* WRITE_LOCATION_FILE_H */