/* * (C) Copyright 2005- 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 #include "grib_api_internal.h" #undef NDEBUG #include int main(int argc, char* argv[]) { ECCODES_ASSERT(argc == 1); grib_handle* h = grib_handle_new_from_samples(0, "GRIB2"); code_table_entry* entries = NULL; size_t num_entries = 0; int err = codes_codetable_get_contents_malloc(h, "indicatorOfUnitOfTimeRange", &entries, &num_entries); ECCODES_ASSERT(!err); ECCODES_ASSERT(entries != NULL); ECCODES_ASSERT(num_entries == 256); for (size_t i=0; i