#ifndef __GEOGRAPHY_H__ #define __GEOGRAPHY_H__ // the #ifndef...#define...#endif is a guard against double inclusion typedef struct { double lat; double lon; } location; double distance(const location *from, const location *to); double colatitude(double); // formal parameter names optional in declaration #endif