1 2 3 4 5 6 7 8 9
#include "position.h" Position position_create(unsigned int x, unsigned int y) { Position pos = {.x = x, .y = y}; return pos; }