mirror of
https://codeberg.org/andyscott/exercism.git
synced 2024-11-09 13:20:48 -05:00
16 lines
155 B
C
16 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
|