// main.c #include "point.h" void do_stuff(); int main() { Point origin = {0, 0}; point_print(&origin); do_stuff(); return 0; }