Former-commit-id:3904c4ccf5
[formerlyb13cbb7e00
[formerly 4909e0dd166e43c22a34d96aa744f51db8a7d6c0]] Former-commit-id:b13cbb7e00
Former-commit-id:8552902906
49 lines
1.8 KiB
C
49 lines
1.8 KiB
C
/***************************************************************/
|
|
/* SHARP-95 */
|
|
/* Advanced Interactive Sounding Analysis Program */
|
|
/* */
|
|
/* John A. Hart */
|
|
/* National Severe Storms Forecast Center */
|
|
/* Kansas City, Missouri */
|
|
/* */
|
|
/* L. Hinson/AWC 11/02 corrected 'return type of Main not*/
|
|
/* int error */
|
|
/***************************************************************/
|
|
|
|
#include <stdio.h>
|
|
#include <string.h>
|
|
#include <stdlib.h>
|
|
#include <math.h>
|
|
#define MAINMOD
|
|
#include <sharp95.h>
|
|
#include "proto_dg.h"
|
|
|
|
/*NP*/
|
|
int main( int argc, char *argv[], char *envp[] )
|
|
{
|
|
|
|
int iret;
|
|
int mode=1;
|
|
|
|
nobanner = 1;
|
|
if((argc > 1) &&(!strcmp(argv[1], "-v")))
|
|
{
|
|
nobanner = 0;
|
|
|
|
printf( "\n\n\n-------------------------------------------------\n");
|
|
printf( "--------------------SHARP v3.0 ------------------\n");
|
|
printf( "------------ John Hart & Jim Whistler -----------\n");
|
|
printf( "- National Centers for Environmental Prediction -\n");
|
|
printf( "--------- SPC/AWC Kansas City, Missouri ---------\n");
|
|
printf( "-------------------------------------------------\n");
|
|
printf( "----------- Last Modified: 26 Aug 1996 ----------\n");
|
|
printf( "-------------------------------------------------\n");
|
|
}
|
|
gd_init ( &iret );
|
|
gg_init (&mode, &iret);
|
|
dg_intl(&iret);
|
|
|
|
make_screen(argc, argv);
|
|
|
|
return 0;
|
|
}
|