blob: 83c2780ea96a36a1b9f486a701b4255943c38b4f (
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
|
.TH "libalpm_groups" 3 "Tue Feb 6 2024 19:11:31" "libalpm" \" -*- nroff -*-
.ad l
.nh
.SH NAME
libalpm_groups \- Groups
.SH SYNOPSIS
.br
.PP
.SS "Data Structures"
.in +1c
.ti -1c
.RI "struct \fBalpm_group_t\fP"
.br
.RI "Package group\&. "
.in -1c
.SS "Functions"
.in +1c
.ti -1c
.RI "\fBalpm_list_t\fP * \fBalpm_find_group_pkgs\fP (\fBalpm_list_t\fP *dbs, const char *name)"
.br
.RI "Find group members across a list of databases\&. "
.in -1c
.SH "Detailed Description"
.PP
Functions for package groups
.SH "Data Structure Documentation"
.PP
.SH "struct alpm_group_t"
.PP
Package group\&.
.PP
\fBData Fields:\fP
.RS 4
char * \fIname\fP group name
.br
.PP
\fBalpm_list_t\fP * \fIpackages\fP list of alpm_pkg_t packages
.br
.PP
.RE
.PP
.SH "Function Documentation"
.PP
.SS "\fBalpm_list_t\fP * alpm_find_group_pkgs (\fBalpm_list_t\fP * dbs, const char * name)"
.PP
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\&.
.PP
\fBParameters\fP
.RS 4
\fIdbs\fP the list of alpm_db_t *
.br
\fIname\fP the name of the group
.RE
.PP
\fBReturns\fP
.RS 4
the list of alpm_pkg_t * (caller is responsible for alpm_list_free)
.RE
.PP
.SH "Author"
.PP
Generated automatically by Doxygen for libalpm from the source code\&.
|