mirror of
https://github.com/nasa/trick.git
synced 2024-12-19 05:07:54 +00:00
17 lines
228 B
C
17 lines
228 B
C
#ifndef SIDEREAL_H
|
|
#define SIDEREAL_H
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
void GST_secs_time( double JD, double *GST );
|
|
void LST_secs_time( double GST, double longitude, double *LST );
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
|
|
#endif
|
|
|