awips2/ncep/gov.noaa.nws.ncep.viz.rsc.ncgrid/dgdriv_c/proto_ctb.h
Steve Harris 7f90924706 12.4.1-10 baseline
Former-commit-id: 7fa9dbd5fb [formerly 4bfbdad17d] [formerly 9f8cb727a5] [formerly 7fa9dbd5fb [formerly 4bfbdad17d] [formerly 9f8cb727a5] [formerly 8485b90ff8 [formerly 9f8cb727a5 [formerly bf53d06834caa780226121334ac1bcf0534c3f16]]]]
Former-commit-id: 8485b90ff8
Former-commit-id: 40aa780b3d [formerly 33a67cdd82] [formerly 73930fb29d0c1e91204e76e6ebfdbe757414f319 [formerly a28d70b5c5]]
Former-commit-id: a16a1b4dd44fc344ee709abbe262aeed58a8339b [formerly e5543a0e86]
Former-commit-id: 0c25458510
2012-05-01 18:06:13 -05:00

80 lines
2 KiB
C

/************************************************************************
* proto_ctb.h *
* *
* This include file contains function prototypes for the CTB files *
* in the CTB libraries with structures defined in ctbcmn.h. *
* *
** *
* A. Hardy/GSC 11/00 Created *
* D.W.Plummer/NCEP 2/01 Added ctb_ccrd *
* A. Hardy/NCEP 3/04 Added ctb_mzrd *
* A. Hardy/NCEP 10/04 Added ctb_permccrd *
* S. Gilbert/NCEP 11/04 Added ctb_g2rdcntr, ctb_g2rdlvl, *
* ctb_g2rdvar *
***********************************************************************/
#ifndef PROTO_CTB
#define PROTO_CTB
/*
* ctb prototypes
*/
void ctb_ccrd ( char *tblnam,
char *dirsym,
Clustcnty_t *cc,
int *iret );
void ctb_permccrd ( char *tblnam,
char *dirsym,
Permclust_t *pc,
int *iret );
void ctb_rbul ( char *tblnam,
char *dirsym,
int *maxbul,
int *nbul,
struct bulletin_list *bularr,
int *iret );
void ctb_rdtyp ( char *tblnam,
char *dirsym,
int *maxdtyp,
int *ndtyp,
struct datatype_list *dtyparr,
int *iret );
void ctb_rmtyp ( char *tblnam,
char *dirsym,
int *maxmtyp,
int *nmtyp,
struct maptype_list *mtyparr,
int *iret );
void ctb_rstn ( const char *tblnam,
const char *dirsym,
int *nstn,
StnLst **stnarr,
int *iret );
void ctb_mzrd ( char *tblnam,
char *dirsym,
int *nstn,
Marzon_t *mznms,
int *iret );
void ctb_g2rdcntr ( char *tbname,
G2wmocntrs *cntrtbl,
int *iret );
void ctb_g2rdlvl ( char *tbname,
G2lvls *lvltbl,
int *iret );
void ctb_g2rdvar ( char *tbname,
G2vars_t *vartbl,
int *iret );
#endif /* PROTO_CTB */