mirror of
https://codeberg.org/andyscott/exercism.git
synced 2024-11-09 21:30:47 -05:00
15 lines
155 B
C
15 lines
155 B
C
#ifndef DARTS_H
|
|
#define DARTS_H
|
|
|
|
#include <stdint.h>
|
|
|
|
typedef struct {
|
|
|
|
float x;
|
|
float y;
|
|
|
|
} coordinate_t;
|
|
|
|
uint8_t score(coordinate_t point);
|
|
|
|
#endif
|