Former-commit-id:4bfbdad17d
[formerly9f8cb727a5
] [formerly4bfbdad17d
[formerly9f8cb727a5
] [formerly8485b90ff8
[formerly bf53d06834caa780226121334ac1bcf0534c3f16]]] Former-commit-id:8485b90ff8
Former-commit-id:33a67cdd82
[formerlya28d70b5c5
] Former-commit-id:e5543a0e86
43 lines
1.1 KiB
C
43 lines
1.1 KiB
C
|
|
/************************************************************************
|
|
* proto_clo.h *
|
|
* *
|
|
* This include file contains private function prototypes for the *
|
|
* c files in the CLO library. *
|
|
* *
|
|
* Log: *
|
|
** *
|
|
* A. Hardy/GSC 11/00 Created *
|
|
* D.W.Plummer/NCEP 01/02 Added clo_bqtag *
|
|
* A. Hardy/SAIC 4/02 Modified prolog description *
|
|
* B. Yin/SAIC 7/04 Changed clo_rdstn calling sequences *
|
|
***********************************************************************/
|
|
|
|
|
|
|
|
#ifndef PROTO_CLO
|
|
#define PROTO_CLO
|
|
|
|
|
|
/*
|
|
* clo prototypes
|
|
*/
|
|
|
|
int clo_bqtag ( char *info );
|
|
|
|
void clo_rdbnd ( Bnd_t *bnd,
|
|
char *fnm,
|
|
int *iret );
|
|
|
|
void clo_rdstn ( Stn_t *stn,
|
|
char *fnm,
|
|
char *alias,
|
|
int *iret );
|
|
|
|
int bnd_sort ( struct binfo_t *bnd1,
|
|
struct binfo_t *bnd2 );
|
|
|
|
int stn_sort ( struct sinfo_t *stn1,
|
|
struct sinfo_t *stn2 );
|
|
|
|
#endif /* PROTO_CLO */
|