1 /*
2  *  - - - - - - - - - - - - - - - -
3  *   g a l _ r k f s 7 8 _ t e s t
4  *  - - - - - - - - - - - - - - - -
5  *
6  *  This routine is part of the General Astrodynamics Library
7  *
8  *  Description:
9  *
10  *     Test gal_rkfs78 routine.
11  *
12  *  Status:
13  *
14  *     Internal test routine
15  *
16  *  Called:
17  *
18  *     gal_rkfs78
19  *     gal_rkf
20  *     gal_vdv
21  *
22  *  This Revision:
23  *
24  *     2008 May 18
25  *
26  *  Copyright (C) 2008 Paul C. L. Willmott. See notes at end.
27  */
28 
29 #ifndef GAL_RKFS78_TEST_H_
30 #define GAL_RKFS78_TEST_H_ 1
31 
32 #undef __BEGIN_DECLS
33 #undef __END_DECLS
34 #ifdef __cplusplus
35 #define __BEGIN_DECLS extern "C" {
36 #define __END_DECLS }
37 #else
38 #define __BEGIN_DECLS /* empty */
39 #define __END_DECLS   /* empty */
40 #endif
41 
42 __BEGIN_DECLS
43 
44 void
45 gal_rkfs78_test
46  (
47  ) ;
48 
49 __END_DECLS
50 
51 #endif /* !GAL_RKFS78_TEST_H_ */
52 
53 /*
54  *  gal - General Astrodynamics Library
55  *  Copyright (C) 2008 Paul C. L. Willmott
56  *
57  *  This program is free software; you can redistribute it and/or modify
58  *  it under the terms of the GNU General Public License as published by
59  *  the Free Software Foundation; either version 2 of the License, or
60  *  (at your option) any later version.
61  *
62  *  This program is distributed in the hope that it will be useful,
63  *  but WITHOUT ANY WARRANTY; without even the implied warranty of
64  *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
65  *  GNU General Public License for more details.
66  *
67  *  You should have received a copy of the GNU General Public License along
68  *  with this program; if not, write to the Free Software Foundation, Inc.,
69  *  51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
70  *
71  *  Contact:
72  *
73  *  Paul Willmott
74  *  vp9mu@amsat.org
75  */
76