mirror of
https://github.com/Unidata/netcdf-c.git
synced 2025-02-11 16:40:36 +08:00
36 lines
629 B
C
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
|