locus.c
1.36 KB
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
58
59
60
61
62
63
64
65
66
67
68
69
#include <stdlib.h>
#include <errno.h>
#include <mailutils/types.h>
#include <mailutils/locus.h>
#include <mailutils/error.h>
int
mu_locus_point_set_file (struct mu_locus_point *pt, const char *filename)
{
int rc;
char const *ref;
rc = mu_ident_ref (filename, &ref);
if (rc)
return rc;
mu_ident_deref (pt->mu_file);
pt->mu_file = ref;
return 0;
}
int
mu_locus_point_init (struct mu_locus_point *pt, const char *filename)
{
pt->mu_line = 0;
pt->mu_col = 0;
return mu_locus_point_set_file (pt, filename);
}
void
mu_locus_point_deinit (struct mu_locus_point *pt)
{
mu_ident_deref (pt->mu_file);
memset (pt, 0, sizeof *pt);
}
int
mu_locus_point_copy (struct mu_locus_point *dest,
struct mu_locus_point const *src)
{
dest->mu_col = src->mu_col;
dest->mu_line = src->mu_line;
return mu_locus_point_set_file (dest, src->mu_file);
}
int
mu_locus_range_copy (struct mu_locus_range *dest,
struct mu_locus_range const *src)
{
int rc;
struct mu_locus_range tmp = MU_LOCUS_RANGE_INITIALIZER;
rc = mu_locus_point_copy (&tmp.beg, &src->beg);
if (rc == 0)
{
rc = mu_locus_point_copy (&tmp.end, &src->end);
if (rc)
mu_locus_point_deinit (&tmp.beg);
else
*dest = tmp;
}
return rc;
}
void
mu_locus_range_deinit (struct mu_locus_range *lr)
{
mu_locus_point_deinit (&lr->beg);
mu_locus_point_deinit (&lr->end);
}