1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35
|
/*** header counterpart to auto-gen'd leapseconds.def */
#if !defined INCLUDED_leap_seconds_h_
#define INCLUDED_leap_seconds_h_
#include <stdint.h>
/**
* Number of known leap corrections. */
extern const size_t nleaps;
/**
* Absolute difference in seconds, TAI - UTC, at transition points */
extern const int32_t leaps_corr[];
/**
* YMD representation of transitions. */
extern const uint32_t leaps_ymd[];
/**
* YMCW representation of transitions. */
extern const uint32_t leaps_ymcw[];
/**
* daisy representation of transitions. */
extern const uint32_t leaps_d[];
/**
* sexy representation of transitions. */
extern const int32_t leaps_s[];
/**
* HMS representation of transitions. */
extern const uint32_t leaps_hms[];
#endif /* INCLUDED_leap_seconds_h_ */
|