00001 00002 00003 /* 00004 * THIS FILE IS UNDER RCS - DO NOT MODIFY UNLESS YOU HAVE 00005 * CHECKED IT OUT USING THE COMMAND CHECKOUT. 00006 * 00007 * $Id: neic2scn_8h-source.html 2161 2006-05-19 16:55:03Z paulf $ 00008 * 00009 * Revision history: 00010 * $Log$ 00010 * Revision 1.1 2006/05/19 16:55:02 paulf 00010 * first inclusion 00010 * 00011 * Revision 1.2 2001/07/01 22:03:19 davidk 00012 * Added function prototypes from libsrc/util/neic2scn.c. 00013 * Previously only structures and constants were defined, 00014 * but no prototypes. 00015 * 00016 * Revision 1.1 2000/03/30 18:23:38 lucky 00017 * Initial revision 00018 * 00019 * 00020 * 00021 */ 00022 00023 00024 #define MAXLEN 10 00025 00026 typedef struct neic2scn 00027 { 00028 00029 char neic_sta[MAXLEN]; 00030 char sta[MAXLEN]; 00031 char comp[MAXLEN]; 00032 char net[MAXLEN]; 00033 00034 } NEIC2SCN; 00035 00036 int GetNEICStaList(NEIC2SCN **Sta, int *Nsta, char *filename); 00037 int MatchNeic2SCN(char *neic_sta, char *sta, char *comp, 00038 char *net, NEIC2SCN *neic2scn, int nSta); 00039