netcdf-c/udunits/lib/idToUnitMap.h
2010-06-03 13:24:43 +00:00

36 lines
629 B
C

/*
* Copyright 2008, 2009 University Corporation for Atmospheric Research
*
* This file is part of the UDUNITS-2 package. See the file LICENSE
* in the top-level source-directory of the package for copying and
* redistribution conditions.
*/
#ifndef UT_ID_TO_UNIT_MAP_H_INCLUDED
#define UT_ID_TO_UNIT_MAP_H_INCLUDED
#include "udunits2.h"
#ifdef __cplusplus
extern "C" {
#endif
/*
* Frees resources associated with a unit-system.
*
* Arguments:
* system Pointer to the unit-system to have its associated
* resources freed.
*/
void
itumFreeSystem(
ut_system* system);
#ifdef __cplusplus
}
#endif
#endif