summaryrefslogtreecommitdiffstats
path: root/UsersTable.c
AgeCommit message (Expand)Author
2020-11-17Hashtable: use dynamic growth and use primes as sizeChristian Göttsche
2020-10-27Avoid some unnecessary casts and mark some not changing variables constChristian Göttsche
2020-10-19XUtils string related updatesChristian Göttsche
2020-10-18Make all required includes explicitBenny Baumann
2020-10-17Combine XAlloc.[ch] into XUtils.[ch]Benny Baumann
2020-10-16Rename StringUtils.[ch] to XUtils.[ch]Benny Baumann
2020-10-16Move xAsprintf, xSnprintf and xStrdup to StringUtils.hBenny Baumann
2020-10-05Update License consistently to GPLv2 as per COPYING fileDaniel Lange
2020-09-03Axe automated header generation.Zev Weiss
2016-02-02Check for failure in allocations.Hisham
2011-12-26major header cleanupHisham Muhammad
2011-12-25Use strdup explicitlyHisham Muhammad
2011-05-26Tempus fugit.Hisham Muhammad
2010-02-25Tempus fugit.Hisham Muhammad
2008-03-09Clean up headers by using 'static' whenever possible.Hisham Muhammad
2007-04-05Switch to unsigned keys in hash, according to issue #1688290 Hisham Muhammad
2006-03-23Update copyrights.Hisham Muhammad
2006-03-04Initial import.Hisham Muhammad
n Mirror of https://gitlab.com/sequoia-pgp/sequoia.gitmatthias
summaryrefslogtreecommitdiffstats
path: root/openpgp/build.rs
blob: aabf157d12e6d3cef2a6c52a936f6530574c06fe (plain)
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
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147