summaryrefslogtreecommitdiff
path: root/rpmio/rpmurl.h
diff options
context:
space:
mode:
authorPanu Matilainen <pmatilai@redhat.com>2007-11-30 22:13:15 +0200
committerPanu Matilainen <pmatilai@redhat.com>2007-11-30 22:13:15 +0200
commit95953fe6101829efc8895193205b991c5faf7eb9 (patch)
treecfefce1c2502035a8d1aa4fc7592752d95a7397a /rpmio/rpmurl.h
parente01888a40376f47ac76a3c7060716a16d601ac62 (diff)
downloadrpm-95953fe6101829efc8895193205b991c5faf7eb9.tar.gz
rpm-95953fe6101829efc8895193205b991c5faf7eb9.tar.bz2
rpm-95953fe6101829efc8895193205b991c5faf7eb9.zip
rpmurl and argv doxygen groupings
Diffstat (limited to 'rpmio/rpmurl.h')
-rw-r--r--rpmio/rpmurl.h16
1 files changed, 8 insertions, 8 deletions
diff --git a/rpmio/rpmurl.h b/rpmio/rpmurl.h
index 6a2cdf9f7..8cd5d3c2d 100644
--- a/rpmio/rpmurl.h
+++ b/rpmio/rpmurl.h
@@ -9,7 +9,7 @@
extern "C" {
#endif
-/**
+/** \ingroup rpmurl
* Supported URL types.
*/
typedef enum urltype_e {
@@ -24,7 +24,7 @@ typedef enum urltype_e {
typedef struct urlinfo_s * urlinfo;
-/**
+/** \ingroup rpmurl
* URL control structure.
*/
struct urlinfo_s {
@@ -45,27 +45,27 @@ struct urlinfo_s {
extern int _url_debug; /*!< URL debugging? */
-/**
+/** \ingroup rpmurl
* Create a URL info structure instance.
* @return new instance
*/
urlinfo urlNew(void);
-/**
+/** \ingroup rpmurl
* Free a URL info structure instance.
* @param u URL control structure
* @return dereferenced instance (NULL if freed)
*/
urlinfo urlFree(urlinfo u);
-/**
+/** \ingroup rpmurl
* Return type of URL.
* @param url url string
* @return type of url
*/
urltype urlIsURL(const char * url);
-/**
+/** \ingroup rpmurl
* Return path component of URL.
* @param url url string
* @retval pathp pointer to path component of url
@@ -73,7 +73,7 @@ urltype urlIsURL(const char * url);
*/
urltype urlPath(const char * url, const char ** pathp);
-/**
+/** \ingroup rpmurl
* Parse URL string into a control structure.
* @param url url string
* @retval uret address of new control instance pointer
@@ -81,7 +81,7 @@ urltype urlPath(const char * url, const char ** pathp);
*/
int urlSplit(const char * url, urlinfo * uret);
-/**
+/** \ingroup rpmurl
* Copy data from URL to local file.
* @param url url string of source
* @param dest file name of destination