/* Position data structure representing a cartesian pair */

#ifndef __POSITION_H__
#define __POSITION_H__

typedef struct position {
  int row;
  int col;
} position_t;

#endif
