mirror of
https://codeberg.org/andyscott/exercism.git
synced 2024-11-10 13:50:46 -05:00
19 lines
237 B
C
19 lines
237 B
C
#ifndef SPACE_AGE_H
|
|
#define SPACE_AGE_H
|
|
|
|
#include <stdint.h>
|
|
|
|
typedef enum planet {
|
|
MERCURY,
|
|
VENUS,
|
|
EARTH,
|
|
MARS,
|
|
JUPITER,
|
|
SATURN,
|
|
URANUS,
|
|
NEPTUNE,
|
|
} planet_t;
|
|
|
|
float age(planet_t planet, int64_t seconds);
|
|
|
|
#endif
|