mirror of https://github.com/ecmwf/eccodes.git
13 lines
180 B
C
13 lines
180 B
C
|
#include "grib_rgauss.h"
|
||
|
typedef struct gaussian_grid gaussian_grid;
|
||
|
|
||
|
struct gaussian_grid {
|
||
|
int reduced;
|
||
|
int order;
|
||
|
int *points;
|
||
|
int *latitudes;
|
||
|
};
|
||
|
|
||
|
void usage(char*);
|
||
|
|