exercism-c/darts/darts.h
Blizzard Finnegan b92478b09c
Init commit
Leap, Difference of Squares, Grains, Collatz Conjecture, Queen Attack,
Darts, Hamming, and Space Age completed yesterday.

Binary and Linked List completed today.
2025-01-11 18:45:47 -05:00

13 lines
154 B
C

#ifndef DARTS_H
#define DARTS_H
#include <stdint.h>
typedef struct {
float x;
float y;
} coordinate_t;
uint8_t score(coordinate_t position);
#endif