#ifndef DATA_STRUCTURES_H #define DATA_STRUCTURES_H struct point { char c; int x; int y; struct point *next; }; extern struct point *head; void push(int x, int y, char c); char pop(); #endif