Toggle navigation
Ocean Color Science Software
Jump to content
ocssw
V2022
web
ocssw
ocssw_src
src
auto_qc
hdf_dio
l1io_close.c
Go to the documentation of this file.
1
#include "
l1io.h
"
2
#include <mfhdf.h>
3
4
void
l1io_close
(l1info_struct l1info)
5
/*******************************************************************
6
7
get_l1a_close
8
9
purpose: close the level 1 dataset
10
11
Returns type: void - nothing
12
13
Parameters: (in calling order)
14
Type Name I/O Description
15
---- ---- --- -----------
16
struct l1info_struct l1info O information struct
17
about the opened file
18
19
Modification history:
20
Programmer Date Description of change
21
---------- ---- ---------------------
22
W. Robinson 16-Aug-1994 Original development
23
24
*******************************************************************/
25
{
26
27
/*
28
* just close the file up
29
*/
30
Hclose(l1info.fid);
31
SDend(l1info.sdfid);
32
}
l1io.h
l1io_close
void l1io_close(l1info_struct l1info)
Definition:
l1io_close.c:4