summaryrefslogtreecommitdiff
path: root/utils/utf8.h
diff options
context:
space:
mode:
authorVincent Sanders <vince@kyllikki.org>2014-11-08 11:38:20 +0000
committerVincent Sanders <vince@kyllikki.org>2014-11-08 11:38:20 +0000
commitf287379a7cca0717166119ecbf15b4e2dcdbfc56 (patch)
tree01110d1feb9c8c4eb934e6b5b716f505aca9979b /utils/utf8.h
parentbc1914fbb16f64d5c107fad968df03ef791059f1 (diff)
downloadnetsurf-f287379a7cca0717166119ecbf15b4e2dcdbfc56.tar.gz
netsurf-f287379a7cca0717166119ecbf15b4e2dcdbfc56.tar.bz2
Fix several doxygen issues
Diffstat (limited to 'utils/utf8.h')
-rw-r--r--utils/utf8.h7
1 files changed, 4 insertions, 3 deletions
diff --git a/utils/utf8.h b/utils/utf8.h
index 7509dde52..134df75c9 100644
--- a/utils/utf8.h
+++ b/utils/utf8.h
@@ -34,9 +34,9 @@
* Encoding of UCS values outside the UTF-16 plane has been removed from
* RFC3629. This function conforms to RFC2279, however.
*
- * \param s_in The sequence to process
- * \param l Length of sequence
- * \return UCS4 character
+ * \param[in] s The sequence to process
+ * \param[in] l Length of sequence
+ * \return UCS4 character
*/
uint32_t utf8_to_ucs4(const char *s, size_t l);
@@ -128,6 +128,7 @@ nserror utf8_to_enc(const char *string, const char *encname,
* \param encname The encoding name (suitable for passing to iconv)
* \param len Length of input string to consider (in bytes), or 0
* \param result Pointer to location to store result (allocated on heap)
+ * \param result_len The length of the data placed in result.
* \return standard nserror value
*/
nserror utf8_from_enc(const char *string, const char *encname,