00001 /* 00002 ** fleng.c 00003 ** 00004 ** Derived from programs on the CD-ROM: 00005 ** "Physics of the Earth and Planetary Interiors." Appendix to Vol. 96/4. 00006 ** (The Flinn-Engdahl Regionalization Scheme: The 1995 revision THE 00007 ** standard to be used by seismologists for identifying and specifying 00008 ** regions of the earth.) 00009 ** Elsvier Science B.V.; Amsterdam; Sept 1996. 00010 ** [programs and data are public domain] 00011 */ 00012 #ifndef _FLENG_H_ 00013 #define _FLENG_H_ 00014 00015 /* 00016 ** FlEngLookup() 00017 ** 00018 ** Either one of grname and srname may be passed as NULL 00019 ** without error (obviously, NULL items won't be populated). 00020 */ 00021 void FlEngLookup( double alat 00022 , double alng 00023 , char** grname 00024 , char** srname 00025 ); 00026 00027 #endif