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