exercism/c/darts/darts.h

16 lines
155 B
C
Raw Normal View History

2024-08-13 17:09:15 -04:00
#ifndef DARTS_H
#define DARTS_H
#include <stdint.h>
typedef struct {
float x;
float y;
} coordinate_t;
uint8_t score(coordinate_t point);
#endif