mirror of
https://github.com/nasa/trick.git
synced 2025-01-10 15:02:58 +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
|
||
|
|