#ifndef NODE_H #define NODE_H typedef struct Node { int x; int y; float elevation; } Node; void change_node_height(Node* node, float diff); #endif