/* This file is part of MED. * * COPYRIGHT (C) 1999 - 2019 EDF R&D, CEA/DEN * MED is free software: you can redistribute it and/or modify * it under the terms of the GNU Lesser General Public License as published by * the Free Software Foundation, either version 3 of the License, or * (at your option) any later version. * * MED is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU Lesser General Public License for more details. * * You should have received a copy of the GNU Lesser General Public License * along with MED. If not, see . */ #include #include #include #include /* * - Nom de la fonction : _MEDdatagroupFermer * - Description : fermeture d'un datagroup HDF * - Parametres : * - id (IN) : l'ID du datagroup * - Resultat : 0 en cas de succes, -1 sinon */ med_err _MEDdatagroupFermer(med_idt id) { if ( H5Gclose(id) < 0) return -1; return 0; }