#ifndef POSITION_H #define POSITION_H typedef struct Position { unsigned int x; unsigned int y; } Position; Position position_create(unsigned int x, unsigned int y); #endif