mirror of https://github.com/ecmwf/eccodes.git
35 lines
730 B
C
35 lines
730 B
C
|
/*
|
||
|
* Copyright 2005-2012 ECMWF.
|
||
|
*
|
||
|
* This software is licensed under the terms of the Apache Licence Version 2.0
|
||
|
* which can be obtained at http://www.apache.org/licenses/LICENSE-2.0.
|
||
|
*
|
||
|
* In applying this licence, ECMWF does not waive the privileges and immunities granted to it by
|
||
|
* virtue of its status as an intergovernmental organisation nor does it submit to any jurisdiction.
|
||
|
*/
|
||
|
|
||
|
#include "grib_api_internal.h"
|
||
|
|
||
|
int main(int argc, char *argv[])
|
||
|
{
|
||
|
int i = 0;
|
||
|
int fail = 0;
|
||
|
|
||
|
grib_context* c = grib_context_get_default();
|
||
|
grib_action *a;
|
||
|
|
||
|
for(i = 1; i < argc; i++){
|
||
|
if(!(a = grib_parse_file(c,argv[i])))
|
||
|
{
|
||
|
fail++;
|
||
|
exit(1);
|
||
|
}
|
||
|
else
|
||
|
{
|
||
|
grib_xref_action_branch(stdout,a,argv[i]);
|
||
|
|
||
|
}
|
||
|
}
|
||
|
return fail;
|
||
|
}
|