alpm-sys 5.0.1

Raw bindings for libalpm
Documentation
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
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
1884
1885
1886
1887
1888
1889
1890
1891
1892
1893
1894
1895
1896
1897
1898
1899
1900
1901
1902
1903
1904
1905
1906
1907
1908
1909
1910
1911
1912
1913
1914
1915
1916
1917
1918
1919
1920
1921
1922
1923
1924
1925
1926
1927
1928
1929
1930
1931
1932
1933
1934
1935
1936
1937
1938
1939
1940
1941
1942
1943
1944
1945
1946
1947
1948
1949
1950
1951
1952
1953
1954
1955
1956
1957
1958
1959
1960
1961
1962
1963
1964
1965
1966
1967
1968
1969
1970
1971
1972
1973
1974
1975
1976
1977
1978
1979
1980
1981
1982
1983
1984
1985
1986
1987
1988
1989
1990
1991
1992
1993
1994
1995
1996
1997
1998
1999
2000
2001
2002
2003
2004
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
2027
2028
2029
2030
2031
2032
2033
2034
2035
2036
2037
2038
2039
2040
2041
2042
2043
2044
2045
2046
2047
2048
2049
2050
2051
2052
2053
2054
2055
2056
2057
2058
2059
2060
2061
2062
2063
2064
2065
2066
2067
2068
2069
2070
2071
2072
2073
2074
2075
2076
2077
2078
2079
2080
2081
2082
2083
2084
2085
2086
2087
2088
2089
2090
2091
2092
2093
2094
2095
2096
2097
2098
2099
2100
2101
2102
2103
2104
2105
2106
2107
2108
2109
2110
2111
2112
2113
2114
2115
2116
2117
2118
2119
2120
2121
2122
2123
2124
2125
2126
2127
2128
2129
2130
2131
2132
2133
2134
2135
2136
2137
2138
2139
2140
2141
2142
2143
2144
2145
2146
2147
2148
2149
2150
2151
2152
2153
2154
2155
2156
2157
2158
2159
2160
2161
2162
2163
2164
2165
2166
2167
2168
2169
2170
2171
2172
2173
2174
2175
2176
2177
2178
2179
2180
2181
2182
2183
2184
2185
2186
2187
2188
2189
2190
2191
2192
2193
2194
2195
2196
2197
2198
2199
2200
2201
2202
2203
2204
2205
2206
2207
2208
2209
2210
2211
2212
2213
2214
2215
2216
2217
2218
2219
2220
2221
2222
2223
2224
2225
2226
2227
2228
2229
2230
2231
2232
2233
2234
2235
2236
2237
2238
2239
2240
2241
2242
2243
2244
2245
2246
2247
2248
2249
2250
2251
2252
2253
2254
2255
2256
2257
2258
2259
2260
2261
2262
2263
2264
2265
2266
2267
2268
2269
2270
2271
2272
2273
2274
2275
2276
2277
2278
2279
2280
2281
2282
2283
2284
2285
2286
2287
2288
2289
2290
2291
2292
2293
2294
2295
2296
2297
2298
2299
2300
2301
2302
2303
2304
2305
2306
2307
2308
2309
2310
2311
2312
2313
2314
2315
2316
2317
2318
2319
2320
2321
2322
2323
2324
2325
2326
2327
2328
2329
2330
2331
2332
2333
2334
2335
2336
2337
2338
2339
2340
2341
2342
2343
2344
2345
2346
2347
2348
2349
2350
2351
2352
2353
2354
2355
2356
2357
2358
2359
2360
2361
2362
2363
2364
2365
2366
2367
2368
2369
2370
2371
2372
2373
2374
2375
2376
2377
2378
2379
2380
2381
2382
2383
2384
2385
2386
2387
2388
2389
2390
2391
2392
2393
2394
2395
2396
2397
2398
2399
2400
2401
2402
2403
2404
2405
2406
2407
2408
2409
2410
2411
2412
2413
2414
2415
2416
2417
2418
2419
2420
2421
2422
2423
2424
2425
2426
2427
2428
2429
2430
2431
2432
2433
2434
2435
2436
2437
2438
2439
2440
2441
2442
2443
2444
2445
2446
2447
2448
2449
2450
2451
2452
2453
2454
2455
2456
2457
2458
2459
2460
2461
2462
2463
2464
2465
2466
2467
2468
2469
2470
2471
2472
2473
2474
2475
2476
2477
2478
2479
2480
2481
2482
2483
2484
2485
2486
2487
2488
2489
2490
2491
2492
2493
2494
2495
2496
2497
2498
2499
2500
2501
2502
2503
2504
2505
2506
2507
2508
2509
2510
2511
2512
2513
2514
2515
2516
2517
2518
2519
2520
2521
2522
2523
2524
2525
2526
2527
2528
2529
2530
2531
2532
2533
2534
2535
2536
2537
2538
2539
2540
2541
2542
2543
2544
2545
2546
2547
2548
2549
2550
2551
2552
2553
2554
2555
2556
2557
2558
2559
2560
2561
2562
2563
2564
2565
2566
2567
2568
2569
2570
2571
2572
2573
2574
2575
2576
2577
2578
2579
2580
2581
2582
2583
2584
2585
2586
2587
2588
2589
2590
2591
2592
2593
2594
2595
2596
2597
2598
2599
2600
2601
2602
2603
2604
2605
2606
2607
2608
2609
2610
2611
2612
2613
2614
2615
2616
2617
2618
2619
2620
2621
2622
2623
2624
2625
2626
2627
2628
2629
2630
2631
2632
2633
2634
2635
2636
2637
2638
2639
2640
2641
2642
2643
2644
2645
2646
2647
2648
2649
2650
2651
2652
2653
2654
2655
2656
2657
2658
2659
2660
2661
2662
2663
2664
2665
2666
2667
2668
2669
2670
2671
2672
2673
2674
2675
2676
2677
2678
2679
2680
2681
2682
2683
2684
2685
2686
2687
2688
2689
2690
2691
2692
2693
2694
2695
2696
2697
2698
2699
2700
2701
2702
2703
2704
2705
2706
2707
2708
2709
2710
2711
2712
2713
2714
2715
2716
2717
2718
2719
2720
2721
2722
2723
2724
2725
2726
2727
2728
2729
2730
2731
2732
2733
2734
2735
2736
2737
2738
2739
2740
2741
2742
2743
2744
2745
2746
2747
2748
2749
2750
2751
2752
2753
2754
2755
2756
2757
2758
2759
2760
2761
2762
2763
2764
2765
2766
2767
2768
2769
2770
2771
2772
2773
2774
2775
2776
2777
2778
2779
2780
2781
2782
2783
2784
2785
2786
2787
2788
2789
2790
2791
2792
2793
2794
2795
2796
2797
2798
2799
2800
2801
2802
2803
2804
2805
2806
2807
2808
2809
2810
2811
2812
2813
2814
2815
2816
2817
2818
2819
2820
2821
2822
2823
2824
2825
2826
2827
2828
2829
2830
2831
2832
2833
2834
2835
2836
2837
2838
2839
2840
2841
2842
2843
2844
2845
2846
2847
2848
2849
2850
2851
2852
2853
2854
2855
2856
2857
2858
2859
2860
2861
2862
2863
2864
2865
2866
2867
2868
2869
2870
2871
2872
2873
2874
2875
2876
2877
2878
2879
2880
2881
2882
2883
2884
2885
2886
2887
2888
2889
2890
2891
2892
2893
2894
2895
2896
2897
2898
2899
2900
2901
2902
2903
2904
2905
2906
2907
2908
2909
2910
2911
2912
2913
2914
2915
2916
2917
2918
2919
2920
2921
2922
2923
2924
2925
2926
2927
2928
2929
2930
2931
2932
2933
2934
2935
2936
2937
2938
2939
2940
2941
2942
2943
2944
2945
2946
2947
2948
2949
2950
2951
2952
2953
2954
2955
2956
2957
2958
2959
2960
2961
2962
2963
2964
2965
2966
2967
2968
2969
2970
2971
2972
2973
2974
2975
2976
2977
2978
2979
2980
2981
2982
2983
2984
2985
2986
2987
2988
2989
2990
2991
2992
2993
2994
2995
2996
2997
2998
2999
3000
3001
3002
3003
3004
3005
3006
3007
3008
3009
3010
3011
3012
3013
3014
3015
3016
3017
3018
3019
3020
3021
3022
3023
3024
3025
3026
3027
3028
3029
3030
3031
3032
3033
3034
3035
3036
3037
3038
3039
3040
3041
3042
3043
3044
3045
3046
3047
3048
3049
3050
3051
3052
3053
3054
3055
3056
3057
3058
3059
3060
3061
3062
3063
3064
3065
3066
3067
3068
3069
3070
3071
3072
3073
3074
3075
3076
3077
3078
3079
3080
3081
3082
3083
3084
3085
3086
3087
3088
3089
3090
3091
3092
3093
3094
3095
3096
3097
3098
3099
3100
3101
3102
3103
3104
3105
3106
3107
3108
3109
3110
3111
3112
3113
3114
3115
3116
3117
3118
3119
3120
3121
3122
3123
3124
3125
3126
3127
3128
3129
3130
3131
3132
3133
3134
3135
3136
3137
3138
3139
3140
3141
3142
3143
3144
3145
3146
3147
3148
3149
3150
3151
3152
3153
3154
3155
3156
3157
3158
3159
3160
3161
3162
3163
3164
3165
3166
3167
3168
3169
3170
3171
3172
3173
3174
3175
3176
3177
3178
3179
3180
3181
3182
3183
3184
3185
3186
3187
3188
3189
3190
3191
3192
3193
3194
3195
3196
3197
3198
3199
3200
3201
3202
3203
3204
3205
3206
3207
3208
3209
3210
3211
3212
3213
3214
3215
3216
3217
3218
3219
3220
3221
3222
3223
3224
3225
3226
3227
3228
3229
3230
3231
3232
3233
3234
3235
3236
3237
3238
3239
3240
3241
3242
3243
3244
3245
3246
3247
3248
3249
3250
3251
3252
3253
3254
3255
3256
3257
3258
3259
3260
3261
3262
3263
3264
3265
3266
3267
3268
3269
3270
3271
3272
3273
3274
3275
3276
3277
3278
3279
3280
3281
3282
3283
3284
3285
3286
3287
3288
3289
3290
3291
3292
3293
3294
3295
3296
3297
3298
3299
3300
3301
3302
3303
3304
3305
3306
3307
3308
3309
3310
3311
3312
3313
3314
3315
3316
3317
3318
3319
3320
3321
3322
3323
3324
3325
3326
3327
3328
3329
3330
3331
3332
3333
3334
3335
3336
3337
3338
3339
3340
3341
3342
3343
3344
3345
3346
3347
3348
3349
3350
3351
3352
3353
3354
3355
3356
3357
3358
3359
3360
3361
3362
3363
3364
3365
3366
3367
3368
3369
3370
3371
3372
3373
3374
3375
3376
3377
3378
3379
3380
3381
3382
3383
3384
3385
3386
3387
warning: variable does not need to be mutable
  --> alpm-bindgen/src/main.rs:87:13
   |
87 |         let mut comment = comment
   |             ----^^^^^^^
   |             |
   |             help: remove this `mut`
   |
   = note: `#[warn(unused_mut)]` (part of `#[warn(unused)]`) on by default

warning: `alpm-bindgen` (bin "alpm-bindgen") generated 1 warning (run `cargo fix --bin "alpm-bindgen" -p alpm-bindgen` to apply 1 suggestion)
    Finished `dev` profile [unoptimized + debuginfo] target(s) in 0.03s
     Running `/home/morganamilo/rust/target/debug/alpm-bindgen src/16.0.1`
 data held by the list node



 pointer to the previous node



 pointer to the next node



 A doubly linked list



 item deallocation callback.
 @param item the item to free



 item comparison callback



 Free a list, but not the contained data.

 @param list the list to free



 Free the internal data of a list structure but not the list itself.

 @param list the list to free
 @param fn a free function for the internal data



 Add a new item to the end of the list.

 @param list the list to add to
 @param data the new item to be added to the list

 @return the resultant list



 @brief Add a new item to the end of the list.

 @param list the list to add to
 @param data the new item to be added to the list

 @return the newly added item



 @brief Duplicate and append a string to a list.

 @param list the list to append to
 @param data the string to duplicate and append

 @return the newly added item



 @brief Add items to a list in sorted order.

 @param list the list to add to
 @param data the new item to be added to the list
 @param fn   the comparison function to use to determine order

 @return the resultant list



 @brief Join two lists.
 The two lists must be independent. Do not free the original lists after
 calling this function, as this is not a copy operation. The list pointers
 passed in should be considered invalid after calling this function.

 @param first  the first list
 @param second the second list

 @return the resultant joined list



 @brief Merge the two sorted sublists into one sorted list.

 @param left  the first list
 @param right the second list
 @param fn    comparison function for determining merge order

 @return the resultant list



 @brief Sort a list of size `n` using mergesort algorithm.

 @param list the list to sort
 @param n    the size of the list
 @param fn   the comparison function for determining order

 @return the resultant list



 @brief Remove an item from the list.
 item is not freed; this is the responsibility of the caller.

 @param haystack the list to remove the item from
 @param item the item to remove from the list

 @return the resultant list



 @brief Remove an item from the list.

 @param haystack the list to remove the item from
 @param needle   the data member of the item we're removing
 @param fn       the comparison function for searching
 @param data     output parameter containing data of the removed item

 @return the resultant list



 @brief Remove a string from a list.

 @param haystack the list to remove the item from
 @param needle   the data member of the item we're removing
 @param data     output parameter containing data of the removed item

 @return the resultant list



 @brief Create a new list without any duplicates.

 This does NOT copy data members.

 @param list the list to copy

 @return a new list containing non-duplicate items



 @brief Copy a string list, including data.

 @param list the list to copy

 @return a copy of the original list



 @brief Copy a list, without copying data.

 @param list the list to copy

 @return a copy of the original list



 @brief Copy a list and copy the data.
 Note that the data elements to be copied should not contain pointers
 and should also be of constant size.

 @param list the list to copy
 @param size the size of each data element

 @return a copy of the original list, data copied as well



 @brief Create a new list in reverse order.

 @param list the list to copy

 @return a new list in reverse order



 @brief Return nth element from list (starting from 0).

 @param list the list
 @param n    the index of the item to find (n < alpm_list_count(list) IS needed)

 @return an alpm_list_t node for index `n`



 @brief Get the next element of a list.

 @param list the list node

 @return the next element, or NULL when no more elements exist



 @brief Get the previous element of a list.

 @param list the list head

 @return the previous element, or NULL when no previous element exist



 @brief Get the last item in the list.

 @param list the list

 @return the last element in the list



 @brief Get the number of items in a list.

 @param list the list

 @return the number of list items



 @brief Find an item in a list.

 @param needle   the item to search
 @param haystack the list
 @param fn       the comparison function for searching (!= NULL)

 @return `needle` if found, NULL otherwise



 @brief Find an item in a list.

 Search for the item whose data matches that of the `needle`.

 @param needle   the data to search for (== comparison)
 @param haystack the list

 @return `needle` if found, NULL otherwise



 @brief Find a string in a list.

 @param needle   the string to search for
 @param haystack the list

 @return `needle` if found, NULL otherwise



 @brief Check if two lists contain the same data, ignoring order.

 Lists are considered equal if they both contain the same data regardless
 of order.

 @param left      the first list
 @param right     the second list
 @param fn        the comparison function

 @return 1 if the lists are equal, 0 if not equal, -1 on error.



 @brief Find the differences between list `left` and list `right`

 The two lists must be sorted. Items only in list `left` are added to the
 `onlyleft` list. Items only in list `right` are added to the `onlyright`
 list.

 @param left      the first list
 @param right     the second list
 @param fn        the comparison function
 @param onlyleft  pointer to the first result list
 @param onlyright pointer to the second result list




 @brief Find the items in list `lhs` that are not present in list `rhs`.

 @param lhs the first list
 @param rhs the second list
 @param fn  the comparison function

 @return a list containing all items in `lhs` not present in `rhs`



 @brief Copy a list and data into a standard C array of fixed length.
 Note that the data elements are shallow copied so any contained pointers
 will point to the original data.

 @param list the list to copy
 @param n    the size of the list
 @param size the size of each data element

 @return an array version of the original list, data copied as well



 The libalpm context handle.

 This struct represents an instance of libalpm.
 @ingroup libalpm_handle



 A database.

 A database is a container that stores metadata about packages.

 A database can be located on the local filesystem or on a remote server.

 To use a database, it must first be registered via \link alpm_register_syncdb \endlink.
 If the database is already present in dbpath then it will be usable. Otherwise,
 the database needs to be downloaded using \link alpm_db_update \endlink. Even if the
 source of the database is the local filesystem.

 After this, the database can be used to query packages and groups. Any packages or groups
 from the database will continue to be owned by the database and do not need to be freed by
 the user. They will be freed when the database is unregistered.

 Databases are automatically unregistered when the \link alpm_handle_t \endlink is released.
 @ingroup libalpm_databases



 A package.

 A package can be loaded from disk via \link alpm_pkg_load \endlink or retrieved from a database.
 Packages from databases are automatically freed when the database is unregistered. Packages loaded
 from a file must be freed manually.

 Packages can then be queried for metadata or added to a transaction
 to be added or removed from the system.
 @ingroup libalpm_packages



 The extended data type used to store non-standard package data fields
 @ingroup libalpm_packages



 The time type used by libalpm. Represents a unix time stamp
 @ingroup libalpm_misc



 Name of the file



 Size of the file



 The file's permissions



 File in a package



 Amount of files in the array



 An array of files



 Package filelist container



 Name of the file (without .pacsave extension)



 Hash of the filename (used internally)



 Local package or package file backup entry



 Determines whether a package filelist contains a given path.
 The provided path should be relative to the install root with no leading
 slashes, e.g. "etc/localtime". When searching for directories, the path must
 have a trailing slash.
 @param filelist a pointer to a package filelist
 @param path the path to search for in the package
 @return a pointer to the matching file or NULL if not found



 group name



 list of alpm_pkg_t packages



 Package group



 Find group members across a list of databases.
 If a member exists in several databases, only the first database is used.
 IgnorePkg is also handled.
 @param dbs the list of alpm_db_t *
 @param name the name of the group
 @return the list of alpm_pkg_t * (caller is responsible for alpm_list_free)



 libalpm's error type



 No error



 Failed to allocate memory



 A system error occurred



 Permmision denied



 Should be a file



 Should be a directory



 Function was called with invalid arguments



 Insufficient disk space



 Handle should be null



 Handle should not be null



 Failed to acquire lock



 Failed to open database



 Failed to create database



 Database should not be null



 Database should be null



 The database could not be found



 Database is invalid



 Database has an invalid signature



 The localdb is in a newer/older format than libalpm expects



 Failed to write to the database



 Failed to remove entry from database



 Server URL is in an invalid format



 The database has no configured servers



 A transaction is already initialized



 A transaction has not been initialized



 Duplicate target in transaction



 Duplicate filename in transaction



 A transaction has not been initialized



 Transaction has not been prepared



 Transaction was aborted



 Failed to interrupt transaction



 Tried to commit transaction without locking the database



 A hook failed to run



 Package not found



 Package is in ignorepkg



 Package is invalid



 Package has an invalid checksum



 Package has an invalid signature



 Package does not have a signature



 Cannot open the package file



 Failed to remove package files



 Package has an invalid name



 Package has an invalid architecture



 Signatures are missing



 Signatures are invalid



 Dependencies could not be satisfied



 Conflicting dependencies



 Files conflict



 Download setup failed



 Download failed



 Invalid Regex



 Error in libarchive



 Error in libcurl



 Error in external download program



 Error in gpgme



 Missing compile-time features



 Returns the current error code from the handle.
 @param handle the context handle
 @return the current error code of the handle



 Returns the string corresponding to an error number.
 @param err the error code to get the string for
 @return the string relating to the given error code



 Initializes the library.
 Creates handle, connects to database and creates lockfile.
 This must be called before any other functions are called.
 @param root the root path for all filesystem operations
 @param dbpath the absolute path to the libalpm database
 @param err an optional variable to hold any error return codes
 @return a context handle on success, NULL on error, err will be set if provided



 Release the library.
 Disconnects from the database, removes handle and lockfile
 This should be the last alpm call you make.
 After this returns, handle should be considered invalid and cannot be reused
 in any way.
 @param handle the context handle
 @return 0 on success, -1 on error



 PGP signature verification options



 Packages require a signature



 Packages do not require a signature,
 but check packages that do have signatures



 Packages do not require a signature,
 but check packages that do have signatures



 Allow packages with signatures that are unknown trust



 Databases require a signature



 Databases do not require a signature,
 but check databases that do have signatures



 Allow databases with signatures that are marginal trust



 Allow databases with signatures that are unknown trust



 The Default siglevel



 PGP signature verification status return codes



 Signature is valid



 The key has expired



 The signature has expired



 The key is not in the keyring



 The key has been disabled



 The signature is invalid



 The trust level of a PGP key



 The signature is fully trusted



 The signature is marginally trusted



 The signature is never trusted



 The signature has unknown trust



 The actual key data



 The key's fingerprint



 UID of the key



 Name of the key's owner



 Email of the key's owner



 When the key was created



 When the key expires



 The length of the key



 has the key been revoked



 A PGP key



 The key of the signature



 The status of the signature



 The validity of the signature



 Signature result. Contains the key, status, and validity of a given
 signature.



 The amount of results in the array



 An array of sigresults



 Signature list. Contains the number of signatures found and a pointer to an
 array of results. The array is of size count.



 Check the PGP signature for the given package file.
 @param pkg the package to check
 @param siglist a pointer to storage for signature results
 @return 0 on success, -1 if an error occurred or signature is missing



 Check the PGP signature for the given database.
 @param db the database to check
 @param siglist a pointer to storage for signature results
 @return 0 on success, -1 if an error occurred or signature is missing



 Clean up and free a signature result list.
 Note that this does not free the siglist object itself in case that
 was allocated on the stack; this is the responsibility of the caller.
 @param siglist a pointer to storage for signature results
 @return 0 on success, -1 on error



 Decode a loaded signature in base64 form.
 @param base64_data the signature to attempt to decode
 @param data the decoded data; must be freed by the caller
 @param data_len the length of the returned data
 @return 0 on success, -1 on failure to properly decode



 Extract the Issuer Key ID from a signature
 @param handle the context handle
 @param identifier the identifier of the key.
 This may be the name of the package or the path to the package.
 @param sig PGP signature
 @param len length of signature
 @param keys a pointer to storage for key IDs
 @return 0 on success, -1 on error



 Types of version constraints in dependency specs.



 No version constraint



 Test version equality (package=x.y.z)



 Test for at least a version (package>=x.y.z)



 Test for at most a version (package<=x.y.z)



 Test for greater than some version (package>x.y.z)



 Test for less than some version (package<x.y.z)



 File conflict type.
 Whether the conflict results from a file existing on the filesystem, or with
 another target in the transaction.



 The conflict results with a another target in the transaction



 The conflict results from a file existing on the filesystem



  Name of the provider to satisfy this dependency



  Version of the provider to match against (optional)



 A description of why this dependency is needed (optional)



 A hash of name (used internally to speed up conflict checks)



 How the version should match against the provider



 The basic dependency type.

 This type is used throughout libalpm, not just for dependencies
 but also conflicts and providers.



 Name of the package that has the dependency



 The dependency that was wanted



 If the depmissing was caused by a conflict, the name of the package
 that would be installed, causing the satisfying package to be removed



 Missing dependency.



 The first package



 The second package



 The conflict



 A conflict that has occurred between two packages.



 The name of the package that caused the conflict



 The type of conflict



 The name of the file that the package conflicts with



 The name of the package that also owns the file if there is one



 File conflict.

 A conflict that has happened due to a two packages containing the same file,
 or a package contains a file that is already on the filesystem and not owned
 by that package.



 Checks dependencies and returns missing ones in a list.
 Dependencies can include versions with depmod operators.
 @param handle the context handle
 @param pkglist the list of local packages
 @param remove an alpm_list_t* of packages to be removed
 @param upgrade an alpm_list_t* of packages to be upgraded (remove-then-upgrade)
 @param reversedeps handles the backward dependencies
 @return an alpm_list_t* of alpm_depmissing_t pointers.



 Find a package satisfying a specified dependency.
 The dependency can include versions with depmod operators.
 @param pkgs an alpm_list_t* of alpm_pkg_t where the satisfyer will be searched
 @param depstring package or provision name, versioned or not
 @return a alpm_pkg_t* satisfying depstring



 Find a package satisfying a specified dependency.
 First look for a literal, going through each db one by one. Then look for
 providers. The first satisfyer that belongs to an installed package is
 returned. If no providers belong to an installed package then an
 alpm_question_select_provider_t is created to select the provider.
 The dependency can include versions with depmod operators.

 @param handle the context handle
 @param dbs an alpm_list_t* of alpm_db_t where the satisfyer will be searched
 @param depstring package or provision name, versioned or not
 @return a alpm_pkg_t* satisfying depstring



 Check the package conflicts in a database

 @param handle the context handle
 @param pkglist the list of packages to check

 @return an alpm_list_t of alpm_conflict_t



 Returns a newly allocated string representing the dependency information.
 @param dep a dependency info structure
 @return a formatted string, e.g. "glibc>=2.12"



 Return a newly allocated dependency information parsed from a string
\link alpm_dep_free should be used to free the dependency \endlink
 @param depstring a formatted string, e.g. "glibc=2.12"
 @return a dependency info structure



 Free a dependency info structure
 @param dep struct to free



 Free a fileconflict and its members.
 @param conflict the fileconflict to free



 Free a depmissing and its members
 @param miss the depmissing to free



 Free a conflict and its members.
 @param conflict the conflict to free



 Type of events.



 Dependencies will be computed for a package.



 Dependencies were computed for a package.



 File conflicts will be computed for a package.



 File conflicts were computed for a package.



 Dependencies will be resolved for target package.



 Dependencies were resolved for target package.



 Inter-conflicts will be checked for target package.



 Inter-conflicts were checked for target package.



 Processing the package transaction is starting.



 Processing the package transaction is finished.



 Package will be installed/upgraded/downgraded/re-installed/removed; See
 alpm_event_package_operation_t for arguments.



 Package was installed/upgraded/downgraded/re-installed/removed; See
 alpm_event_package_operation_t for arguments.



 Target package's integrity will be checked.



 Target package's integrity was checked.



 Target package will be loaded.



 Target package is finished loading.



 Scriptlet has printed information; See alpm_event_scriptlet_info_t for
 arguments.



 Database files will be downloaded from a repository.



 Database files were downloaded from a repository.



 Not all database files were successfully downloaded from a repository.



 Package files will be downloaded from a repository.



 Package files were downloaded from a repository.



 Not all package files were successfully downloaded from a repository.



 Disk space usage will be computed for a package.



 Disk space usage was computed for a package.



 An optdepend for another package is being removed; See
 alpm_event_optdep_removal_t for arguments.



 A configured repository database is missing; See
 alpm_event_database_missing_t for arguments.



 Checking keys used to create signatures are in keyring.



 Keyring checking is finished.



 Downloading missing keys into keyring.



 Key downloading is finished.



 A .pacnew file was created; See alpm_event_pacnew_created_t for arguments.



 A .pacsave file was created; See alpm_event_pacsave_created_t for
 arguments.



 Processing hooks will be started.



 Processing hooks is finished.



 A hook is starting



 A hook has finished running.



 Type of event



 An event that may represent any event.



 An enum over the kind of package operations.



 Package (to be) installed. (No oldpkg)



 Package (to be) upgraded



 Package (to be) re-installed



 Package (to be) downgraded



 Package (to be) removed (No newpkg)



 Type of event



 Type of operation



 Old package



 New package



 A package operation event occurred.



 Type of event



 Package with the optdep



 Optdep being removed



 An optional dependency was removed.



 Type of event



 Line of scriptlet output



 A scriptlet was ran.



 Type of event



 Name of the database



 A database is missing.

 The database is registered but has not been downloaded



 Type of event



 Name of the file



 A package was downloaded.



 Type of event



 Whether the creation was result of a NoUpgrade or not



 Old package



 New Package



 Filename of the file without the .pacnew suffix



 A pacnew file was created.



 Type of event



 Old package



 Filename of the file without the .pacsave suffix



 A pacsave file was created.



 Kind of hook.



 Type of event



 Type of hook



 pre/post transaction hooks are to be ran.



 Type of event



 Name of hook



 Description of hook to be outputted



 position of hook being run



 total hooks being run



 A pre/post transaction hook was ran.



 Type of event



 Number of packages to download



 Total size of packages to download



 Packages downloading about to start.



 Type of event it's always safe to access this.



 The any event type. It's always safe to access this.



 Package operation



 An optdept was remove



 A scriptlet was ran



 A database is missing



 A package was downloaded



 A pacnew file was created



 A pacsave file was created



 Pre/post transaction hooks are being ran



 A hook was ran



 Download packages



 Events.
 This is a union passed to the callback that allows the frontend to know
 which type of event was triggered (via type). It is then possible to
 typecast the pointer to the right structure, or use the union field, in order
 to access event-specific data.



 Event callback.

 Called when an event occurs
 @param ctx user-provided context
 @param event the event that occurred



 Type of question.
 Unlike the events or progress enumerations, this enum has bitmask values
 so a frontend can use a bitmask map to supply preselected answers to the
 different types of questions.



 Should target in ignorepkg be installed anyway?



 Should a package be replaced?



 Should a conflicting package be removed?



 Should a corrupted package be deleted?



 Should unresolvable targets be removed from the transaction?



 Provider selection



 Should a key be imported?



 Type of question



 Answer



 A question that can represent any other question.



 Type of question



 Answer: whether or not to install pkg anyway



 The ignored package that we are deciding whether to install



 Should target in ignorepkg be installed anyway?



 Type of question



 Answer: whether or not to replace oldpkg with newpkg



 Package to be replaced



 Package to replace with.



 DB of newpkg



 Should a package be replaced?



 Type of question



 Answer: whether or not to remove conflict->package2



 Conflict info



 Should a conflicting package be removed?



 Type of question



 Answer: whether or not to remove filepath



 File to remove



 Error code indicating the reason for package invalidity



 Should a corrupted package be deleted?



 Type of question



 Answer: whether or not to skip packages



 List of alpm_pkg_t* with unresolved dependencies



 Should unresolvable targets be removed from the transaction?



 Type of question



 Answer: which provider to use (index from providers)



 List of alpm_pkg_t* as possible providers



 What providers provide for



 Provider selection



 Type of question



 Answer: whether or not to import key



 UID of the key to import



 Fingerprint the key to import



 Should a key be imported?



 The type of question. It's always safe to access this.



 A question that can represent any question.
 It's always safe to access this.



 Should target in ignorepkg be installed anyway?



 Should a package be replaced?



 Should a conflicting package be removed?



 Should a corrupted package be deleted?



 Should unresolvable targets be removed from the transaction?



 Provider selection



 Should a key be imported?



 Questions.
 This is an union passed to the callback that allows the frontend to know
 which type of question was triggered (via type). It is then possible to
 typecast the pointer to the right structure, or use the union field, in order
 to access question-specific data.



 Question callback.

 This callback allows user to give input and decide what to do during certain events
 @param ctx user-provided context
 @param question the question being asked.



 An enum over different kinds of progress alerts.



 Package install



 Package upgrade



 Package downgrade



 Package reinstall



 Package removal



 Conflict checking



 Diskspace checking



 Package Integrity checking



 Loading packages from disk



 Checking signatures of packages



 Progress callback

 Alert the front end about the progress of certain events.
 Allows the implementation of loading bars for events that
 make take a while to complete.
 @param ctx user-provided context
 @param progress the kind of event that is progressing
 @param pkg for package operations, the name of the package being operated on
 @param percent the percent completion of the action
 @param howmany the total amount of items in the action
 @param current the current amount of items completed
/
/** Progress callback



 File download events.
 These events are reported by ALPM via download callback.



 A download was started



 A download made progress



 Download will be retried



 A download completed



 whether this file is optional and thus the errors could be ignored



 Context struct for when a download starts.



 Amount of data downloaded



 Total amount need to be downloaded



 Context struct for when a download progresses.



 If the download will resume or start over



 Context struct for when a download retries.



 Total bytes in file



 download result code:
    0 - download completed successfully
    1 - the file is up-to-date
   -1 - error



 Context struct for when a download completes.



 Type of download progress callbacks.
 @param ctx user-provided context
 @param filename the name of the file being downloaded
 @param event the event type
 @param data the event data of type alpm_download_event_*_t



 A callback for downloading files
 @param ctx user-provided context
 @param url the URL of the file to be downloaded
 @param localpath the directory to which the file should be downloaded
 @param force whether to force an update, even if the file is the same
 @return 0 on success, 1 if the file exists and is identical, -1 on
 error.



 Get the database of locally installed packages.
 The returned pointer points to an internal structure
 of libalpm which should only be manipulated through
 libalpm functions.
 @return a reference to the local database



 Get the list of sync databases.
 Returns a list of alpm_db_t structures, one for each registered
 sync database.

 @param handle the context handle
 @return a reference to an internal list of alpm_db_t structures



 Register a sync database of packages.
 Databases can not be registered when there is an active transaction.

 @param handle the context handle
 @param treename the name of the sync repository
 @param level what level of signature checking to perform on the
 database; note that this must be a '.sig' file type verification
 @return an alpm_db_t* on success (the value), NULL on error



 Unregister all package databases.
 Databases can not be unregistered while there is an active transaction.

 @param handle the context handle
 @return 0 on success, -1 on error (pm_errno is set accordingly)



 Unregister a package database.
 Databases can not be unregistered when there is an active transaction.

 @param db pointer to the package database to unregister
 @return 0 on success, -1 on error (pm_errno is set accordingly)



 Get the handle of a package database.
 @param db pointer to the package database
 @return the alpm handle that the package database belongs to



 Get the name of a package database.
 @param db pointer to the package database
 @return the name of the package database, NULL on error



 Get the signature verification level for a database.
 Will return the default verification level if this database is set up
 with ALPM_SIG_USE_DEFAULT.
 @param db pointer to the package database
 @return the signature verification level



 Check the validity of a database.
 This is most useful for sync databases and verifying signature status.
 If invalid, the handle error code will be set accordingly.
 @param db pointer to the package database
 @return 0 if valid, -1 if invalid (pm_errno is set accordingly)



 Get the list of servers assigned to this db.
 @param db pointer to the database to get the servers from
 @return a char* list of servers



 Sets the list of servers for the database to use.
 @param db the database to set the servers. The list will be duped and
 the original will still need to be freed by the caller.
 @param servers a char* list of servers.



 Add a download server to a database.
 @param db database pointer
 @param url url of the server
 @return 0 on success, -1 on error (pm_errno is set accordingly)



 Remove a download server from a database.
 @param db database pointer
 @param url url of the server
 @return 0 on success, 1 on server not present,
 -1 on error (pm_errno is set accordingly)



 Get the list of cache servers assigned to this db.
 @param db pointer to the database to get the servers from
 @return a char* list of servers



 Sets the list of cache servers for the database to use.
 @param db the database to set the servers. The list will be duped and
 the original will still need to be freed by the caller.
 @param servers a char* list of servers.



 Add a download cache server to a database.
 @param db database pointer
 @param url url of the server
 @return 0 on success, -1 on error (pm_errno is set accordingly)



 Remove a download cache server from a database.
 @param db database pointer
 @param url url of the server
 @return 0 on success, 1 on server not present,
 -1 on error (pm_errno is set accordingly)



 Update package databases.

 An update of the package databases in the list \a dbs will be attempted.
 Unless \a force is true, the update will only be performed if the remote
 databases were modified since the last update.

 This operation requires a database lock, and will return an applicable error
 if the lock could not be obtained.

 Example:
 @code
 alpm_list_t *dbs = alpm_get_syncdbs(config->handle);
 ret = alpm_db_update(config->handle, dbs, force);
 if(ret < 0) {
     pm_printf(ALPM_LOG_ERROR, _("failed to synchronize all databases (%s)\n"),
         alpm_strerror(alpm_errno(config->handle)));
 }
 @endcode

 @note After a successful update, the \link alpm_db_get_pkgcache()
 package cache \endlink will be invalidated
 @param handle the context handle
 @param dbs list of package databases to update
 @param force if true, then forces the update, otherwise update only in case
 the databases aren't up to date
 @return 0 on success, -1 on error (pm_errno is set accordingly),
 1 if all databases are up to to date



 Get a package entry from a package database.
 Looking up a package is O(1) and will be significantly faster than
 iterating over the pkgcahe.
 @param db pointer to the package database to get the package from
 @param name of the package
 @return the package entry on success, NULL on error



 Get the package cache of a package database.
 This is a list of all packages the db contains.
 @param db pointer to the package database to get the package from
 @return the list of packages on success, NULL on error



 Get a group entry from a package database.
 Looking up a group is O(1) and will be significantly faster than
 iterating over the groupcahe.
 @param db pointer to the package database to get the group from
 @param name of the group
 @return the groups entry on success, NULL on error



 Get the group cache of a package database.
 @param db pointer to the package database to get the group from
 @return the list of groups on success, NULL on error



 Searches a database with regular expressions.
 @param db pointer to the package database to search in
 @param needles a list of regular expressions to search for
 @param ret pointer to list for storing packages matching all
 regular expressions - must point to an empty (NULL) alpm_list_t *.
 @return 0 on success, -1 on error (pm_errno is set accordingly)



 The usage level of a database.



 Enable refreshes for this database



 Enable search for this database



 Enable installing packages from this database



 Enable sysupgrades with this database



 Enable all usage levels



 Sets the usage of a database.
 @param db pointer to the package database to set the status for
 @param usage a bitmask of alpm_db_usage_t values
 @return 0 on success, or -1 on error



 Gets the usage of a database.
 @param db pointer to the package database to get the status of
 @param usage pointer to an alpm_db_usage_t to store db's status
 @return 0 on success, or -1 on error



 Logging Levels



 Error



 Warning



 Debug



 Function



 The callback type for logging.

 libalpm will call this function whenever something is to be logged.
 many libalpm will produce log output. Additionally any calls to \link alpm_logaction
 \endlink will also call this callback.
 @param ctx user-provided context
 @param level the currently set loglevel
 @param fmt the printf like format string
 @param args printf like arguments



 A printf-like function for logging.
 @param handle the context handle
 @param prefix caller-specific prefix for the log
 @param fmt output format
 @return 0 on success, -1 on error (pm_errno is set accordingly)



 Returns the callback used for logging.
 @param handle the context handle
 @return the currently set log callback



 Returns the callback used for logging.
 @param handle the context handle
 @return the currently set log callback context



 Sets the callback used for logging.
 @param handle the context handle
 @param cb the cb to use
 @param ctx user-provided context to pass to cb
 @return 0 on success, -1 on error (pm_errno is set accordingly)



 Returns the callback used to report download progress.
 @param handle the context handle
 @return the currently set download callback



 Returns the callback used to report download progress.
 @param handle the context handle
 @return the currently set download callback context



 Sets the callback used to report download progress.
 @param handle the context handle
 @param cb the cb to use
 @param ctx user-provided context to pass to cb
 @return 0 on success, -1 on error (pm_errno is set accordingly)



 Returns the downloading callback.
 @param handle the context handle
 @return the currently set fetch callback



 Returns the downloading callback.
 @param handle the context handle
 @return the currently set fetch callback context



 Sets the downloading callback.
 @param handle the context handle
 @param cb the cb to use
 @param ctx user-provided context to pass to cb
 @return 0 on success, -1 on error (pm_errno is set accordingly)



 Returns the callback used for events.
 @param handle the context handle
 @return the currently set event callback



 Returns the callback used for events.
 @param handle the context handle
 @return the currently set event callback context



 Sets the callback used for events.
 @param handle the context handle
 @param cb the cb to use
 @param ctx user-provided context to pass to cb
 @return 0 on success, -1 on error (pm_errno is set accordingly)



 Returns the callback used for questions.
 @param handle the context handle
 @return the currently set question callback



 Returns the callback used for questions.
 @param handle the context handle
 @return the currently set question callback context



 Sets the callback used for questions.
 @param handle the context handle
 @param cb the cb to use
 @param ctx user-provided context to pass to cb
 @return 0 on success, -1 on error (pm_errno is set accordingly)



Returns the callback used for operation progress.
 @param handle the context handle
 @return the currently set progress callback



Returns the callback used for operation progress.
 @param handle the context handle
 @return the currently set progress callback context



 Sets the callback used for operation progress.
 @param handle the context handle
 @param cb the cb to use
 @param ctx user-provided context to pass to cb
 @return 0 on success, -1 on error (pm_errno is set accordingly)



 Returns the root path. Read-only.
 @param handle the context handle



 Returns the path to the database directory. Read-only.
 @param handle the context handle



 Get the name of the database lock file. Read-only.
 This is the name that the lockfile would have. It does not
 matter if the lockfile actually exists on disk.
 @param handle the context handle



 Gets the currently configured cachedirs,
 @param handle the context handle
 @return a char* list of cache directories



 Sets the cachedirs.
 @param handle the context handle
 @param cachedirs a char* list of cachdirs. The list will be duped and
 the original will still need to be freed by the caller.
 @return 0 on success, -1 on error (pm_errno is set accordingly)



 Append a cachedir to the configured cachedirs.
 @param handle the context handle
 @param cachedir the cachedir to add
 @return 0 on success, -1 on error (pm_errno is set accordingly)



 Remove a cachedir from the configured cachedirs.
 @param handle the context handle
 @param cachedir the cachedir to remove
 @return 0 on success, -1 on error (pm_errno is set accordingly)



 Gets the currently configured hookdirs,
 @param handle the context handle
 @return a char* list of hook directories



 Sets the hookdirs.
 @param handle the context handle
 @param hookdirs a char* list of hookdirs. The list will be duped and
 the original will still need to be freed by the caller.
 @return 0 on success, -1 on error (pm_errno is set accordingly)



 Append a hookdir to the configured hookdirs.
 @param handle the context handle
 @param hookdir the hookdir to add
 @return 0 on success, -1 on error (pm_errno is set accordingly)



 Remove a hookdir from the configured hookdirs.
 @param handle the context handle
 @param hookdir the hookdir to remove
 @return 0 on success, -1 on error (pm_errno is set accordingly)



 Gets the currently configured overwritable files,
 @param handle the context handle
 @return a char* list of overwritable file globs



 Sets the overwritable files.
 @param handle the context handle
 @param globs a char* list of overwritable file globs. The list will be duped and
 the original will still need to be freed by the caller.
 @return 0 on success, -1 on error (pm_errno is set accordingly)



 Append an overwritable file to the configured overwritable files.
 @param handle the context handle
 @param glob the file glob to add
 @return 0 on success, -1 on error (pm_errno is set accordingly)



 Remove a file glob from the configured overwritable files globs.
 @note The overwritable file list contains a list of globs. The glob to
 remove must exactly match the entry to remove. There is no glob expansion.
 @param handle the context handle
 @param glob the file glob to remove
 @return 0 on success, -1 on error (pm_errno is set accordingly)



 Gets the filepath to the currently set logfile.
 @param handle the context handle
 @return the path to the logfile



 Sets the logfile path.
 @param handle the context handle
 @param logfile path to the new location of the logfile
 @return 0 on success, -1 on error (pm_errno is set accordingly)



 Returns the path to libalpm's GnuPG home directory.
 @param handle the context handle
 @return the path to libalpms's GnuPG home directory



 Sets the path to libalpm's GnuPG home directory.
 @param handle the context handle
 @param gpgdir the gpgdir to set



 Returns the user to switch to for sensitive operations.
 @return the user name



 Sets the user to switch to for sensitive operations.
 @param handle the context handle
 @param sandboxuser the user to set



 Returns whether to use syslog (0 is FALSE, TRUE otherwise).
 @param handle the context handle
 @return 0 on success, -1 on error (pm_errno is set accordingly)



 Sets whether to use syslog (0 is FALSE, TRUE otherwise).
 @param handle the context handle
 @param usesyslog whether to use the syslog (0 is FALSE, TRUE otherwise)



 Get the list of no-upgrade files
 @param handle the context handle
 @return the char* list of no-upgrade files



 Add a file to the no-upgrade list
 @param handle the context handle
 @param path the path to add
 @return 0 on success, -1 on error (pm_errno is set accordingly)



 Sets the list of no-upgrade files
 @param handle the context handle
 @param noupgrade a char* list of file to not upgrade.
 The list will be duped and the original will still need to be freed by the caller.
 @return 0 on success, -1 on error (pm_errno is set accordingly)



 Remove an entry from the no-upgrade list
 @param handle the context handle
 @param path the path to remove
 @return 0 on success, -1 on error (pm_errno is set accordingly)



 Test if a path matches any of the globs in the no-upgrade list
 @param handle the context handle
 @param path the path to test
 @return 0 is the path matches a glob, negative if there is no match and
 positive is the  match was inverted



 Get the list of no-extract files
 @param handle the context handle
 @return the char* list of no-extract files



 Add a file to the no-extract list
 @param handle the context handle
 @param path the path to add
 @return 0 on success, -1 on error (pm_errno is set accordingly)



 Sets the list of no-extract files
 @param handle the context handle
 @param noextract a char* list of file to not extract.
 The list will be duped and the original will still need to be freed by the caller.
 @return 0 on success, -1 on error (pm_errno is set accordingly)



 Remove an entry from the no-extract list
 @param handle the context handle
 @param path the path to remove
 @return 0 on success, -1 on error (pm_errno is set accordingly)



 Test if a path matches any of the globs in the no-extract list
 @param handle the context handle
 @param path the path to test
 @return 0 is the path matches a glob, negative if there is no match and
 positive is the  match was inverted



 Get the list of ignored packages
 @param handle the context handle
 @return the char* list of ignored packages



 Add a file to the ignored package list
 @param handle the context handle
 @param pkg the package to add
 @return 0 on success, -1 on error (pm_errno is set accordingly)



 Sets the list of packages to ignore
 @param handle the context handle
 @param ignorepkgs a char* list of packages to ignore
 The list will be duped and the original will still need to be freed by the caller.
 @return 0 on success, -1 on error (pm_errno is set accordingly)



 Remove an entry from the ignorepkg list
 @param handle the context handle
 @param pkg the package to remove
 @return 0 on success, -1 on error (pm_errno is set accordingly)



 Get the list of ignored groups
 @param handle the context handle
 @return the char* list of ignored groups



 Add a file to the ignored group list
 @param handle the context handle
 @param grp the group to add
 @return 0 on success, -1 on error (pm_errno is set accordingly)



 Sets the list of groups to ignore
 @param handle the context handle
 @param ignoregrps a char* list of groups to ignore
 The list will be duped and the original will still need to be freed by the caller.
 @return 0 on success, -1 on error (pm_errno is set accordingly)



 Remove an entry from the ignoregroup list
 @param handle the context handle
 @param grp the group to remove
 @return 0 on success, -1 on error (pm_errno is set accordingly)



 Gets the list of dependencies that are assumed to be met
 @param handle the context handle
 @return a list of alpm_depend_t*



 Add a depend to the assumed installed list
 @param handle the context handle
 @param dep the dependency to add
 @return 0 on success, -1 on error (pm_errno is set accordingly)



 Sets the list of dependencies that are assumed to be met
 @param handle the context handle
 @param deps a list of *alpm_depend_t
 The list will be duped and the original will still need to be freed by the caller.
 @return 0 on success, -1 on error (pm_errno is set accordingly)



 Remove an entry from the assume installed list
 @param handle the context handle
 @param dep the dep to remove
 @return 0 on success, -1 on error (pm_errno is set accordingly)



 Returns the allowed package architecture.
 @param handle the context handle
 @return the configured package architectures



 Adds an allowed package architecture.
 @param handle the context handle
 @param arch the architecture to set



 Sets the allowed package architecture.
 @param handle the context handle
 @param arches the architecture to set



 Removes an allowed package architecture.
 @param handle the context handle
 @param arch the architecture to remove



 Get whether or not checking for free space before installing packages is enabled.
 @param handle the context handle
 @return 0 if disabled, 1 if enabled



 Enable/disable checking free space before installing packages.
 @param handle the context handle
 @param checkspace 0 for disabled, 1 for enabled



 Gets the configured database extension.
 @param handle the context handle
 @return the configured database extension



 Sets the database extension.
 @param handle the context handle
 @param dbext the database extension to use
 @return 0 on success, -1 on error (pm_errno is set accordingly)



 Get the default siglevel.
 @param handle the context handle
 @return a \link alpm_siglevel_t \endlink bitfield of the siglevel



 Set the default siglevel.
 @param handle the context handle
 @param level a \link alpm_siglevel_t \endlink bitfield of the level to set
 @return 0 on success, -1 on error (pm_errno is set accordingly)



 Get the configured local file siglevel.
 @param handle the context handle
 @return a \link alpm_siglevel_t \endlink bitfield of the siglevel



 Set the local file siglevel.
 @param handle the context handle
 @param level a \link alpm_siglevel_t \endlink bitfield of the level to set
 @return 0 on success, -1 on error (pm_errno is set accordingly)



 Get the configured remote file siglevel.
 @param handle the context handle
 @return a \link alpm_siglevel_t \endlink bitfield of the siglevel



 Set the remote file siglevel.
 @param handle the context handle
 @param level a \link alpm_siglevel_t \endlink bitfield of the level to set
 @return 0 on success, -1 on error (pm_errno is set accordingly)



 Get the download timeout state
 @param handle the context handle
 @return 0 for enabled, 1 for disabled



 Enables/disables the download timeout.
 @param handle the context handle
 @param disable_dl_timeout 0 for enabled, 1 for disabled
 @return 0 on success, -1 on error (pm_errno is set accordingly)



 Gets the number of parallel streams to download database and package files.
 @param handle the context handle
 @return the number of parallel streams to download database and package files



 Sets number of parallel streams to download database and package files.
 @param handle the context handle
 @param num_streams number of parallel download streams
 @return 0 on success, -1 on error



 Get the state of the sandbox
 @param handle the context handle
 @return 0 for enabled, 1 if any component is disabled, 2 if completely disabled



 Enables/disables all components of the sandbox.
 @param handle the context handle
 @param disable_sandbox 0 for enabled, 1 for disabled
 @return 0 on success, -1 on error (pm_errno is set accordingly)



 Get the state of the filesystem part of the sandbox
 @param handle the context handle
 @return 0 for enabled, 1 for disabled



 Enables/disables the filesystem part of the sandbox.
 @param handle the context handle
 @param disable_sandbox_filesystem 0 for enabled, 1 for disabled
 @return 0 on success, -1 on error (pm_errno is set accordingly)



 Get the state of the syscalls part of the sandbox
 @param handle the context handle
 @return 0 for enabled, 1 for disabled



 Enables/disables the syscalls part of the sandbox.
 @param handle the context handle
 @param disable_sandbox_syscalls 0 for enabled, 1 for disabled
 @return 0 on success, -1 on error (pm_errno is set accordingly)



 Package install reasons.



 Explicitly requested by the user.



 Installed as a dependency for another package.



 Failed parsing of local database



 Location a package object was loaded from.



 Loaded from a file via \link alpm_pkg_load \endlink



 From the local database



 From a sync database



 Method used to validate a package.



 The package's validation type is unknown



 The package does not have any validation



 The package is validated with md5



 The package is validated with sha256



 The package is validated with a PGP signature



 Create a package from a file.
 If full is false, the archive is read only until all necessary
 metadata is found. If it is true, the entire archive is read, which
 serves as a verification of integrity and the filelist can be created.
 The allocated structure should be freed using alpm_pkg_free().
 @param handle the context handle
 @param filename location of the package tarball
 @param full whether to stop the load after metadata is read or continue
 through the full archive
 @param level what level of package signature checking to perform on the
 package; note that this must be a '.sig' file type verification
 @param pkg address of the package pointer
 @return 0 on success, -1 on error (pm_errno is set accordingly)



 Fetch a list of remote packages.
 @param handle the context handle
 @param urls list of package URLs to download
 @param fetched list of filepaths to the fetched packages, each item
    corresponds to one in `urls` list. This is an output parameter,
    the caller should provide a pointer to an empty list
    (*fetched === NULL) and the callee fills the list with data.
 @return 0 on success or -1 on failure



 Find a package in a list by name.
 @param haystack a list of alpm_pkg_t
 @param needle the package name
 @return a pointer to the package if found or NULL



 Free a package.
 Only packages loaded with \link alpm_pkg_load \endlink can be freed.
 Packages from databases will be freed by libalpm when they are unregistered.
 @param pkg package pointer to free
 @return 0 on success, -1 on error (pm_errno is set accordingly)



 Check the integrity (with md5) of a package from the sync cache.
 @param pkg package pointer
 @return 0 on success, -1 on error (pm_errno is set accordingly)



 Compare two version strings and determine which one is 'newer'.
 Returns a value comparable to the way strcmp works. Returns 1
 if a is newer than b, 0 if a and b are the same version, or -1
 if b is newer than a.

 Different epoch values for version strings will override any further
 comparison. If no epoch is provided, 0 is assumed.

 Keep in mind that the pkgrel is only compared if it is available
 on both versions handed to this function. For example, comparing
 1.5-1 and 1.5 will yield 0; comparing 1.5-1 and 1.5-2 will yield
 -1 as expected. This is mainly for supporting versioned dependencies
 that do not include the pkgrel.



 Computes the list of packages requiring a given package.
 The return value of this function is a newly allocated
 list of package names (char*), it should be freed by the caller.
 @param pkg a package
 @return the list of packages requiring pkg



 Computes the list of packages optionally requiring a given package.
 The return value of this function is a newly allocated
 list of package names (char*), it should be freed by the caller.
 @param pkg a package
 @return the list of packages optionally requiring pkg



 Test if a package should be ignored.
 Checks if the package is ignored via IgnorePkg, or if the package is
 in a group ignored via IgnoreGroup.
 @param handle the context handle
 @param pkg the package to test
 @return 1 if the package should be ignored, 0 otherwise



 Gets the handle of a package
 @param pkg a pointer to package
 @return the alpm handle that the package belongs to



 Gets the name of the file from which the package was loaded.
 @param pkg a pointer to package
 @return a reference to an internal string



 Returns the package base name.
 @param pkg a pointer to package
 @return a reference to an internal string



 Returns the package name.
 @param pkg a pointer to package
 @return a reference to an internal string



 Returns the package version as a string.
 This includes all available epoch, version, and pkgrel components. Use
 alpm_pkg_vercmp() to compare version strings if necessary.
 @param pkg a pointer to package
 @return a reference to an internal string



 Returns the origin of the package.
 @return an alpm_pkgfrom_t constant, -1 on error



 Returns the package description.
 @param pkg a pointer to package
 @return a reference to an internal string



 Returns the package URL.
 @param pkg a pointer to package
 @return a reference to an internal string



 Returns the build timestamp of the package.
 @param pkg a pointer to package
 @return the timestamp of the build time



 Returns the install timestamp of the package.
 @param pkg a pointer to package
 @return the timestamp of the install time



 Returns the packager's name.
 @param pkg a pointer to package
 @return a reference to an internal string



 Returns the package's MD5 checksum as a string.
 The returned string is a sequence of 32 lowercase hexadecimal digits.
 @param pkg a pointer to package
 @return a reference to an internal string



 Returns the package's SHA256 checksum as a string.
 The returned string is a sequence of 64 lowercase hexadecimal digits.
 @param pkg a pointer to package
 @return a reference to an internal string



 Returns the architecture for which the package was built.
 @param pkg a pointer to package
 @return a reference to an internal string



 Returns the size of the package. This is only available for sync database
 packages and package files, not those loaded from the local database.
 @param pkg a pointer to package
 @return the size of the package in bytes.



 Returns the installed size of the package.
 @param pkg a pointer to package
 @return the total size of files installed by the package.



 Returns the package installation reason.
 @param pkg a pointer to package
 @return an enum member giving the install reason.



 Returns the list of package licenses.
 @param pkg a pointer to package
 @return a pointer to an internal list of strings.



 Returns the list of package groups.
 @param pkg a pointer to package
 @return a pointer to an internal list of strings.



 Returns the list of package dependencies as alpm_depend_t.
 @param pkg a pointer to package
 @return a reference to an internal list of alpm_depend_t structures.



 Returns the list of package optional dependencies.
 @param pkg a pointer to package
 @return a reference to an internal list of alpm_depend_t structures.



 Returns a list of package check dependencies
 @param pkg a pointer to package
 @return a reference to an internal list of alpm_depend_t structures.



 Returns a list of package make dependencies
 @param pkg a pointer to package
 @return a reference to an internal list of alpm_depend_t structures.



 Returns the list of packages conflicting with pkg.
 @param pkg a pointer to package
 @return a reference to an internal list of alpm_depend_t structures.



 Returns the list of packages provided by pkg.
 @param pkg a pointer to package
 @return a reference to an internal list of alpm_depend_t structures.



 Returns the list of packages to be replaced by pkg.
 @param pkg a pointer to package
 @return a reference to an internal list of alpm_depend_t structures.



 Returns the list of files installed by pkg.
 The filenames are relative to the install root,
 and do not include leading slashes.
 @param pkg a pointer to package
 @return a pointer to a filelist object containing a count and an array of
 package file objects



 Returns the list of files backed up when installing pkg.
 @param pkg a pointer to package
 @return a reference to a list of alpm_backup_t objects



 Returns the database containing pkg.
 Returns a pointer to the alpm_db_t structure the package is
 originating from, or NULL if the package was loaded from a file.
 @param pkg a pointer to package
 @return a pointer to the DB containing pkg, or NULL.



 Returns the base64 encoded package signature.
 @param pkg a pointer to package
 @return a reference to an internal string



 Extracts package signature either from embedded package signature
 or if it is absent then reads data from detached signature file.
 @param pkg a pointer to package.
 @param sig output parameter for signature data. Callee function allocates
 a buffer needed for the signature data. Caller is responsible for
 freeing this buffer.
 @param sig_len output parameter for the signature data length.
 @return 0 on success, negative number on error.



 Returns the method used to validate a package during install.
 @param pkg a pointer to package
 @return an enum member giving the validation method



 Gets the extended data field of a package.
 @param pkg a pointer to package
 @return a reference to a list of alpm_pkg_xdata_t objects



 Returns whether the package has an install scriptlet.
 @return 0 if FALSE, TRUE otherwise



 Returns the size of the files that will be downloaded to install a
 package.
 @param newpkg the new package to upgrade to
 @return the size of the download



 Set install reason for a package in the local database.
 The provided package object must be from the local database or this method
 will fail. The write to the local database is performed immediately.
 @param pkg the package to update
 @param reason the new install reason
 @return 0 on success, -1 on error (pm_errno is set accordingly)



 Open a package changelog for reading.
 Similar to fopen in functionality, except that the returned 'file
 stream' could really be from an archive as well as from the database.
 @param pkg the package to read the changelog of (either file or db)
 @return a 'file stream' to the package changelog



 Read data from an open changelog 'file stream'.
 Similar to fread in functionality, this function takes a buffer and
 amount of data to read. If an error occurs pm_errno will be set.
 @param ptr a buffer to fill with raw changelog data
 @param size the size of the buffer
 @param pkg the package that the changelog is being read from
 @param fp a 'file stream' to the package changelog
 @return the number of characters read, or 0 if there is no more data or an
 error occurred.



 Close a package changelog for reading.
 @param pkg the package to close the changelog of (either file or db)
 @param fp the 'file stream' to the package changelog to close
 @return 0 on success, -1 on error



 Open a package mtree file for reading.
 @param pkg the local package to read the mtree of
 @return an archive structure for the package mtree file



 Read next entry from a package mtree file.
 @param pkg the package that the mtree file is being read from
 @param archive the archive structure reading from the mtree file
 @param entry an archive_entry to store the entry header information
 @return 0 on success, 1 if end of archive is reached, -1 otherwise.



 Close a package mtree file.
 @param pkg the local package to close the mtree of
 @param archive the archive to close



 Transaction flags



 Ignore dependency checks.



 Delete files even if they are tagged as backup.



 Ignore version numbers when checking dependencies.



 Remove also any packages depending on a package being removed.



 Remove packages and their unneeded deps (not explicitly installed).



 Modify database but do not commit changes to the filesystem.



 Do not run hooks during a transaction



 Use ALPM_PKG_REASON_DEPEND when installing packages.



 Only download packages and do not actually install.



 Do not execute install scriptlets after installing.



 Ignore dependency conflicts.



 Do not install a package if it is already installed and up to date.



 Use ALPM_PKG_REASON_EXPLICIT when installing packages.



 Do not remove a package if it is needed by another one.



 Remove also explicitly installed unneeded deps (use with ALPM_TRANS_FLAG_RECURSE).



 Do not lock the database during the operation.



 Returns the bitfield of flags for the current transaction.
 @param handle the context handle
 @return the bitfield of transaction flags



 Returns a list of packages added by the transaction.
 @param handle the context handle
 @return a list of alpm_pkg_t structures



 Returns the list of packages removed by the transaction.
 @param handle the context handle
 @return a list of alpm_pkg_t structures



 Initialize the transaction.
 @param handle the context handle
 @param flags flags of the transaction (like nodeps, etc; see alpm_transflag_t)
 @return 0 on success, -1 on error (pm_errno is set accordingly)



 Prepare a transaction.
 @param handle the context handle
 @param data the address of an alpm_list where a list
 of alpm_depmissing_t objects is dumped (conflicting packages)
 @return 0 on success, -1 on error (pm_errno is set accordingly)



 Commit a transaction.
 @param handle the context handle
 @param data the address of an alpm_list where detailed description
 of an error can be dumped (i.e. list of conflicting files)
 @return 0 on success, -1 on error (pm_errno is set accordingly)



 Interrupt a transaction.
 @param handle the context handle
 @return 0 on success, -1 on error (pm_errno is set accordingly)



 Release a transaction.
 @param handle the context handle
 @return 0 on success, -1 on error (pm_errno is set accordingly)



 Search for packages to upgrade and add them to the transaction.
 @param handle the context handle
 @param enable_downgrade allow downgrading of packages if the remote version is lower
 @return 0 on success, -1 on error (pm_errno is set accordingly)



 Add a package to the transaction.
 If the package was loaded by alpm_pkg_load(), it will be freed upon
 \link alpm_trans_release \endlink invocation.
 @param handle the context handle
 @param pkg the package to add
 @return 0 on success, -1 on error (pm_errno is set accordingly)



 Add a package removal to the transaction.
 @param handle the context handle
 @param pkg the package to uninstall
 @return 0 on success, -1 on error (pm_errno is set accordingly)



 Check for new version of pkg in syncdbs.

 If the same package appears multiple dbs only the first will be checked

 This only checks the syncdb for a newer version. It does not access the network at all.
 See \link alpm_db_update \endlink to update a database.



 Get the md5 sum of file.
 @param filename name of the file
 @return the checksum on success, NULL on error



 Get the sha256 sum of file.
 @param filename name of the file
 @return the checksum on success, NULL on error



 Remove the database lock file
 @param handle the context handle
 @return 0 on success, -1 on error

 @note Safe to call from inside signal handlers.



 Enum of possible compile time features



 localization



 Ability to download



 Signature checking



 Get the version of library.
 @return the library version, e.g. "6.0.4"



 Get the capabilities of the library.
 @return a bitmask of the capabilities



 Drop privileges by switching to a different user.
 @param handle the context handle
 @param sandboxuser the user to switch to
 @param sandbox_path if non-NULL, restrict writes to this filesystem path
 @param restrict_syscalls whether to deny access to a list of dangerous syscalls
 @return 0 on success, -1 on failure