summaryrefslogtreecommitdiff
path: root/maze/data_structures.h
blob: e856aaa288a79f76638f1b82ac0a9c16ea355065 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#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