attribute.texi
2.66 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
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
@c This is part of the GNU Mailutils manual.
@c Copyright (C) 1999,2000,2001,2002 Free Software Foundation, Inc.
@c See file mailutils.texi for copying conditions.
@comment *******************************************************************
@example
@code{/* Prefix @emph{attribute_} is reserved */}
@code{#include <mailutils/attribute.h>}
@end example
@deftypefun int attribute_create (attribute_t *@var{pattribute})
@end deftypefun
@deftypefun void attribute_destroy (attribute_t *@var{pattribute})
@end deftypefun
@deftypefun int attribute_is_seen (attribute_t @var{attribute})
@end deftypefun
@deftypefun int attribute_is_answered (attribute_t @var{attribute})
@end deftypefun
@deftypefun int attribute_is_flagged (attribute_t @var{attribute})
@end deftypefun
@deftypefun int attribute_is_deleted (attribute_t @var{attribute})
@end deftypefun
@deftypefun int attribute_is_draft (attribute_t @var{attribute})
@end deftypefun
@deftypefun int attribute_is_recent (attribute_t @var{attribute})
@end deftypefun
@deftypefun int attribute_is_read (attribute_t @var{attribute})
@end deftypefun
@deftypefun int attribute_set_seen (attribute_t @var{attribute})
@end deftypefun
@deftypefun int attribute_set_answered (attribute_t @var{attribute})
@end deftypefun
@deftypefun int attribute_set_flagged (attribute_t @var{attribute})
@end deftypefun
@deftypefun int attribute_set_deleted (attribute_t @var{attribute})
@end deftypefun
@deftypefun int attribute_set_draft (attribute_t @var{attribute})
@end deftypefun
@deftypefun int attribute_set_recent (attribute_t @var{attribute})
@end deftypefun
@deftypefun int attribute_set_read (attribute_t @var{attribute})
@end deftypefun
@deftypefun int attribute_unset_seen (attribute_t @var{attribute})
@end deftypefun
@deftypefun int attribute_unset_answered (attribute_t @var{attribute})
@end deftypefun
@deftypefun int attribute_unset_flagged (attribute_t @var{attribute})
@end deftypefun
@deftypefun int attribute_unset_deleted (attribute_t @var{attribute})
@end deftypefun
@deftypefun int attribute_unset_draft (attribute_t @var{attribute})
@end deftypefun
@deftypefun int attribute_unset_recent (attribute_t @var{attribute})
@end deftypefun
@deftypefun int attribute_unset_read (attribute_t @var{attribute})
@end deftypefun
@deftypefun int attribute_is_equal (attribute_t @var{att1}, attribute_t @var{att2})
@end deftypefun
@deftypefun int attribute_copy (attribute_t @var{dst}, attribute_t @var{src})
@end deftypefun
@deftypefun int string_to_attribute (const char *@var{buf}, attribute_t *@var{pattr})
@end deftypefun
@deftypefun int attribute_to_string (attribute_t @var{attr}, char *@var{buf}, size_t @var{len}, size_t *@var{pwriten})
@end deftypefun