diff options
author | Rodrigo Arias Mallo <rodarima@gmail.com> | 2024-03-09 17:35:19 +0100 |
---|---|---|
committer | rodarima <rodarima@gmail.com> | 2024-03-09 18:43:51 +0100 |
commit | 4c56214b8c2e130d3709bdca2513aef20b7b0fab (patch) | |
tree | b8cd0c6dafb5850ba116221f6f39a62e84983aa5 /src/web.cc | |
parent | bde09c45adf0daf252fafbaf87683d3ed7eaab07 (diff) |
Use Doxygen comments for C files
Diffstat (limited to 'src/web.cc')
-rw-r--r-- | src/web.cc | 8 |
1 files changed, 4 insertions, 4 deletions
@@ -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) |