exercism/c/darts/darts.h
2024-08-13 17:09:15 -04:00

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