MISR Toolkit
1.5.1
Main Page
Related Pages
+
Namespaces
Namespace List
+
Namespace Members
All
Typedefs
+
Data Structures
Data Structures
Class Hierarchy
+
Data Fields
+
All
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
~
+
Functions
a
c
d
e
f
g
h
i
j
l
m
n
o
p
r
s
t
u
v
w
~
+
Variables
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
Enumerator
Related Functions
+
Files
File List
+
Globals
+
All
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
+
Functions
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
y
z
+
Variables
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
+
Typedefs
_
a
b
c
d
f
g
h
i
j
l
m
n
o
p
r
s
t
u
v
y
z
+
Enumerations
a
b
c
f
g
h
j
m
n
p
r
t
v
y
+
Enumerator
a
b
c
d
f
g
h
i
j
k
m
n
o
r
s
t
u
v
+
Macros
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
Examples
Util
src
MtkStringListFree.c
Go to the documentation of this file.
1
/*===========================================================================
2
= =
3
= MtkStringListFree =
4
= =
5
=============================================================================
6
7
Jet Propulsion Laboratory
8
MISR
9
MISR Toolkit
10
11
Copyright 2005, California Institute of Technology.
12
ALL RIGHTS RESERVED.
13
U.S. Government Sponsorship acknowledged.
14
15
============================================================================*/
16
17
#include "
MisrUtil.h
"
18
#include "
MisrError.h
"
19
#include <stdlib.h>
20
33
MTKt_status
MtkStringListFree
(
34
int
strcnt,
35
char
**strlist[] )
36
{
37
int
i;
38
39
if
(strlist == NULL ||
40
*strlist == NULL)
41
return
MTK_SUCCESS
;
42
43
for
(i = 0; i < strcnt; ++i)
44
free((*strlist)[i]);
45
free(*strlist);
46
*strlist = NULL;
47
48
return
MTK_SUCCESS
;
49
}
MtkStringListFree
MTKt_status MtkStringListFree(int strcnt, char **strlist[])
Free string list.
Definition:
MtkStringListFree.c:33
MTK_SUCCESS
Definition:
MisrError.h:12
MisrError.h
MisrUtil.h
MTKt_status
MTKt_status
Definition:
MisrError.h:11
MISR Toolkit - Copyright © 2005 - 2020 Jet Propulsion Laboratory
Generated on Fri Jun 19 2020 22:49:52