-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathget-field.gv
46 lines (40 loc) · 1.3 KB
/
get-field.gv
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
digraph enter
{
graph [
rankdir="LR"
bgcolor="black"
color="white"
nodesep="0.1"
ranksep="0.5"
];
node [
shape="Mrecord"
fontsize="12"
style="filled"
height="0.2"
penwidth="0.0"
];
edge [
penwidth="1.0"
color="#A0A0A0"
arrowsize="0.5"
];
mutt_enter_fname_full [ label="mutt_enter_fname_full() - ': '" ]
mutt_enter_fname [ label="mutt_enter_fname()" ]
mutt_get_field_full [ label="mutt_get_field_full() - ''" ]
mutt_get_field [ label="mutt_get_field() - ': ' or ':'" ]
mutt_pattern_func [ label="mutt_pattern_func() - ': '" ]
crypt_ask_for_key [ label="crypt_ask_for_key() - ': '" ]
pgp_ask_for_key [ label="pgp_ask_for_key() - ': '" ]
mutt_get_field_unbuffered [ label="mutt_get_field_unbuffered() - ': '" ]
mutt_get_password [ label="mutt_get_password() - ': ' or ':'" ]
edit_address [ label="edit_address() - ': '" ]
crypt_ask_for_key -> mutt_get_field
edit_address -> mutt_get_field
mutt_enter_fname -> mutt_enter_fname_full
mutt_get_field -> mutt_get_field_full
mutt_get_field_unbuffered -> mutt_get_field
mutt_get_password -> mutt_get_field_unbuffered
mutt_pattern_func -> mutt_get_field
pgp_ask_for_key -> mutt_get_field
}