HOPS
HOPS class reference
julian.h
Go to the documentation of this file.
1 /*
2  * $Id: julian.h 47 2007-03-31 00:49:45Z gbc $
3  */
4 /* Cribbed from seesat5 10/1/99 jpd */
5 
6 #include "time_float_type.h"
7 
8 #ifndef JULIAN_H
9 #define JULIAN_H
10 
11 extern HTLdbl atomin();
12  /* convert string to minutes */
13 
14 extern char **degdms();
15  /* convert HTLdbl to deg, minutes, seconds strings */
16 
17 extern char *jdstr();
18  /* converts jd to year, month, day in string form */
19 
20 extern long int julday(int y, int m, int d);
21  /* returns JD (unit = days) of given year, month, day @ 12h */
22 
23 extern char *stoup();
24  /* converts sting to all upper case */
25 
26 extern char *timstr();
27  /* converts minutes to string of "hhmm:ss" format */
28 
29 int year_of_jd( long int jd);
30 
31 #endif /* ndef JULIAN_H */
32 
33 /*
34  * eof
35  */
HTLdbl atomin()
char * stoup()
char ** degdms()
char * jdstr()
char * timstr()
int year_of_jd(long int jd)
Definition: julian.c:268
long int julday(int y, int m, int d)
Definition: julian.c:396
double HTLdbl
Definition: time_float_type.h:22