summaryrefslogtreecommitdiff
path: root/dpid/misc_new.c
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 /dpid/misc_new.c
parentbde09c45adf0daf252fafbaf87683d3ed7eaab07 (diff)
Use Doxygen comments for C files
Diffstat (limited to 'dpid/misc_new.c')
-rw-r--r--dpid/misc_new.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/dpid/misc_new.c b/dpid/misc_new.c
index 50867bc3..94b4d320 100644
--- a/dpid/misc_new.c
+++ b/dpid/misc_new.c
@@ -125,7 +125,7 @@ int a_Misc_nohang_rdtag(int socket, int timeout, Dstr **tag)
}
*/
-/*
+/**
* Alternative to mkdtemp().
* Not as strong as mkdtemp, but enough for creating a directory.
*/
@@ -141,8 +141,8 @@ char *a_Misc_mkdtemp(char *template)
return template;
}
-/*
- * Return a new, nonexistent file name from a template
+/**
+ * Return a new, nonexistent file name from a template.
* (adapted from dietlibc; alternative to mkdtemp())
*/
char *a_Misc_mkfname(char *template)
@@ -176,7 +176,7 @@ char *a_Misc_mkfname(char *template)
}
}
-/*
+/**
* Return a new, random hexadecimal string of 'nchar' characters.
*/
char *a_Misc_mksecret(int nchar)