exercism/c/space-age/space_age.h

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