awips2/ncep/gov.noaa.nws.ncep.viz.rsc.ncgrid/dgdriv_c/ggcmaps.c
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

62 lines
1.8 KiB
C

#include <stdio.h>
#include <string.h>
/*
* Fortran prototype (see proto_gemlib.h)
*/
void gg_maps_ (char *proj, char *garea, char *imgfil, int *idrpfl,
int *iret, size_t, size_t, size_t);
/*
* C prototype (see fortran_wrapper.h)
*/
void ggc_maps (const char *proj, const char *garea, const char *imgfil,
int *idrpfl, int *iret);
/*
* underscore issue (uscore.h)
*/
#define gg_maps gg_maps_
void ggc_maps (const char *proj, const char *garea, const char *imgfil,
int *idrpfl, int *iret)
/************************************************************************
* ggc_maps *
* *
* This subroutine is a wrapper function for gg_maps. It is used by *
* the Java JNA to resolve string size issues. *
* *
* ggc_maps ( proj, garea, imgfil, idrpfl, iret ) *
* *
* Input parameters: *
* *proj const char Map projection *
* *garea const char Graphic area *
* *imgfil const char Image file name *
* *
* Output parameters: *
* *idrpfl int Image drop flag *
* 0 = No input from user *
* 1 = Drop image *
* 2 = Do not drop image *
* *iret int Return code *
* 0 = normal return *
** *
* Log: *
* T. Lee/NCEP 3/10 C wrapper for GG_MAPS *
************************************************************************/
{
*iret = 0;
*idrpfl = 0;
/*
* Call Fortran funtion GG_MAPS
*/
gg_maps ( (char *)proj, (char *)garea, (char *)imgfil, idrpfl, iret,
strlen(proj), strlen(garea), strlen(imgfil));
/*printf ( " strlen(proj) ---> %d\n ", strlen(proj) );
printf ( " strlen(garea) ---> %d\n ", strlen(garea) );
printf ( " strlen(imgfil) ---> %d\n ", strlen(imgfil) );
*/
return;
}