summaryrefslogtreecommitdiff
path: root/src/web.cc
diff options
context:
space:
mode:
authorRodrigo Arias Mallo <rodarima@gmail.com>2024-03-09 17:35:19 +0100
committerrodarima <rodarima@gmail.com>2024-03-09 18:43:51 +0100
commit4c56214b8c2e130d3709bdca2513aef20b7b0fab (patch)
treeb8cd0c6dafb5850ba116221f6f39a62e84983aa5 /src/web.cc
parentbde09c45adf0daf252fafbaf87683d3ed7eaab07 (diff)
Use Doxygen comments for C files
Diffstat (limited to 'src/web.cc')
-rw-r--r--src/web.cc8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/web.cc b/src/web.cc
index a175ddb9..5266c6e6 100644
--- a/src/web.cc
+++ b/src/web.cc
@@ -39,7 +39,7 @@ void a_Web_init(void)
ValidWebs = dList_new(32);
}
-/*
+/**
* Given the MIME content type, and a fd to read it from,
* this function connects the proper MIME viewer to it.
* Return value:
@@ -113,7 +113,7 @@ int a_Web_dispatch_by_type (const char *Type, DilloWeb *Web,
}
-/*
+/**
* Allocate and set safe values for a DilloWeb structure
*/
DilloWeb* a_Web_new(BrowserWindow *bw, const DilloUrl *url,
@@ -136,7 +136,7 @@ DilloWeb* a_Web_new(BrowserWindow *bw, const DilloUrl *url,
return web;
}
-/*
+/**
* Validate a DilloWeb pointer
*/
int a_Web_valid(DilloWeb *web)
@@ -144,7 +144,7 @@ int a_Web_valid(DilloWeb *web)
return (dList_find(ValidWebs, web) != NULL);
}
-/*
+/**
* Deallocate a DilloWeb structure
*/
void a_Web_free(DilloWeb *web)