diff options
author | Aaron Griffin <aaron@archlinux.org> | 2006-10-15 21:06:08 +0000 |
---|---|---|
committer | Aaron Griffin <aaron@archlinux.org> | 2006-10-15 21:06:08 +0000 |
commit | db769f667d93d9127b570570564589337c793fbe (patch) | |
tree | 94f90c61fcf2e988f2a718b06925e0df20a29332 /doc/man3/alpm_dep.3 | |
parent | e037328e219697f8453dc25df2b8f0d25bbc1acc (diff) | |
download | pacman-db769f667d93d9127b570570564589337c793fbe.tar.xz |
Added alpm function docs along
pacman.c : Removed link to frugalware wiki
sync.c : do not display Uncompressed size if 0 (archlinux has no USIZE)
Diffstat (limited to 'doc/man3/alpm_dep.3')
-rw-r--r-- | doc/man3/alpm_dep.3 | 57 |
1 files changed, 57 insertions, 0 deletions
diff --git a/doc/man3/alpm_dep.3 b/doc/man3/alpm_dep.3 new file mode 100644 index 00000000..49eaf0a1 --- /dev/null +++ b/doc/man3/alpm_dep.3 @@ -0,0 +1,57 @@ +.TH "Dependency Functions" 3 "16 Oct 2006" "libalpm" \" -*- nroff -*- +.ad l +.nh +.SH NAME +Dependency Functions \- Functions to get informations about a libalpm dependency. + +.PP +.SS "Functions" + +.in +1c +.ti -1c +.RI "void * \fBalpm_dep_getinfo\fP (pmdepmissing_t *miss, unsigned char parm)" +.br +.ti -1c +.RI "void * \fBalpm_conflict_getinfo\fP (pmconflict_t *conflict, unsigned char parm)" +.br +.in -1c +.SH "Detailed Description" +.PP +Functions to get informations about a libalpm dependency. +.PP +.SH "Function Documentation" +.PP +.SS "void* alpm_conflict_getinfo (pmconflict_t * conflict, unsigned char parm)" +.PP +Get informations about a file conflict. +.PP +\fBParameters:\fP +.RS 4 +\fIconflict\fP database conflict structure +.br +\fIparm\fP name of the info to get +.RE +.PP +\fBReturns:\fP +.RS 4 +a char* on success (the value), NULL on error +.RE +.PP + +.SS "void* alpm_dep_getinfo (pmdepmissing_t * miss, unsigned char parm)" +.PP +Get informations about a dependency. +.PP +\fBParameters:\fP +.RS 4 +\fImiss\fP dependency pointer +.br +\fIparm\fP name of the info to get +.RE +.PP +\fBReturns:\fP +.RS 4 +a char* on success (the value), NULL on error +.RE +.PP + |