forked from EddyRivasLab/easel
-
Notifications
You must be signed in to change notification settings - Fork 0
/
esl_arr2.c
57 lines (49 loc) · 1.08 KB
/
esl_arr2.c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
#include "esl_config.h"
#include <stdlib.h>
#include <string.h>
#include "easel.h"
/* Function: esl_arr2_SSizeof()
* Synopsis: Returns size of a 2D array of \0-terminated strings, in bytes
* Incept: SRE, Fri Nov 3 15:15:56 2017
*/
size_t
esl_arr2_SSizeof(char **s, int dim1)
{
size_t n = 0;
int i;
if (s)
{
n += sizeof(char *) * dim1;
for (i = 0; i < dim1; i++)
if (s[i])
n += sizeof(char) * (1 + strlen(s[i]));
}
return n;
}
/* Function: esl_arr2_Destroy()
* Synopsis: Free a 2D array.
* Incept: SRE, Fri Nov 3 15:32:21 2017
*
* Purpose: Free a 2D pointer array <p>, where first dimension is
* <dim1>. (That is, the array is <p[0..dim1-1][]>.)
* Tolerates any of the pointers being NULL, to allow
* sparse arrays.
*
* Returns: (void)
*
* Throws: (no abnormal error conditions)
*
* Xref: Was <esl_Free2D()>.
*/
void
esl_arr2_Destroy(void **p, int dim1)
{
int i;
if (p)
{
for (i = 0; i < dim1; i++)
if (p[i])
free(p[i]);
free(p);
}
}