eccodes/tools/codes_parser.cc

36 lines
925 B
C++
Raw Normal View History

2013-03-25 12:04:10 +00:00
/*
2020-01-28 14:32:34 +00:00
* (C) Copyright 2005- ECMWF.
2013-03-25 12:04:10 +00:00
*
* 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"
2020-01-22 13:10:59 +00:00
int main(int argc, char* argv[])
2013-03-25 12:04:10 +00:00
{
2020-01-22 13:10:59 +00:00
int i = 0;
int fail = 0;
2013-03-25 12:04:10 +00:00
2020-01-22 13:10:59 +00:00
grib_context* c = grib_context_get_default();
grib_action* a = NULL;
2013-03-25 12:04:10 +00:00
2020-01-22 13:10:59 +00:00
for (i = 1; i < argc; i++) {
printf("%s ... ", argv[i]);
fflush(stdout);
2023-07-15 19:34:22 +00:00
// argv can be "-" to indicate stdin
2020-01-22 13:10:59 +00:00
if (!(a = grib_parse_file(c, argv[i]))) {
fail++;
printf("FAILED\n");
exit(1);
}
else {
printf("OK\n");
}
2013-03-25 12:04:10 +00:00
}
2020-01-22 13:10:59 +00:00
return fail;
2013-03-25 12:04:10 +00:00
}