summaryrefslogtreecommitdiff
path: root/utils
diff options
context:
space:
mode:
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 */