summaryrefslogtreecommitdiff
path: root/utils
diff options
context:
space:
mode:
authorVincent Sanders <vince@netsurf-browser.org>2012-07-24 16:19:49 +0100
committerVincent Sanders <vince@netsurf-browser.org>2012-07-24 16:19:49 +0100
commit25cdea33516b200b9740a091e4437e48c0607372 (patch)
treecac7829623b94d9a6ad8147798739838711817ed /utils
parentbd740ad9b771210f5862c181fd60b9c63854dabc (diff)
downloadnetsurf-25cdea33516b200b9740a091e4437e48c0607372.tar.gz
netsurf-25cdea33516b200b9740a091e4437e48c0607372.tar.bz2
doxygen serious warning cleanup
Diffstat (limited to 'utils')
-rw-r--r--utils/filepath.h5
-rw-r--r--utils/url.h9
2 files changed, 10 insertions, 4 deletions
diff --git a/utils/filepath.h b/utils/filepath.h
index 08dd050d3..ff3ebe90e 100644
--- a/utils/filepath.h
+++ b/utils/filepath.h
@@ -16,7 +16,10 @@
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
-/** \file Utility routines to obtain paths to file resources. */
+/**
+ * \file utils/filepath.h
+ * \brief Utility routines to obtain paths to file resources.
+ */
#ifndef _NETSURF_UTILS_FILEPATH_H_
#define _NETSURF_UTILS_FILEPATH_H_
diff --git a/utils/url.h b/utils/url.h
index 8d41b139c..fa5c67faa 100644
--- a/utils/url.h
+++ b/utils/url.h
@@ -17,17 +17,20 @@
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
-/** \file
- * URL parsing and joining (interface).
+/**
+ * \file utils/url.h
+ * \brief URL parsing and joining (interface).
*/
#ifndef _NETSURF_UTILS_URL_H_
#define _NETSURF_UTILS_URL_H_
-/* file url prefix */
+/** File url prefix */
#define FILE_SCHEME_PREFIX "file:///"
+/** File url prefix length */
#define FILE_SCHEME_PREFIX_LEN 8
+/** URL utility function return codes */
typedef enum {
URL_FUNC_OK, /**< No error */
URL_FUNC_NOMEM, /**< Insufficient memory */