summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorLennart Poettering <lennart@poettering.net>2006-05-17 19:07:53 +0000
committerLennart Poettering <lennart@poettering.net>2006-05-17 19:07:53 +0000
commit41badddbb9d47fbc82a8473c24bac6e8044642d5 (patch)
tree02c2b0276dde0a1cd786d600080d39b2f885f36b /src
parent56d8e56431e988716ef5580f95ab4361b7a2ebe1 (diff)
add doxygen docs for utf8.h
git-svn-id: file:///home/lennart/svn/public/pulseaudio/trunk@914 fefdeb5f-60dc-0310-8127-8f9354f1896f
Diffstat (limited to 'src')
-rw-r--r--src/polyp/utf8.h7
1 files changed, 7 insertions, 0 deletions
diff --git a/src/polyp/utf8.h b/src/polyp/utf8.h
index 6d1e4a7d..e9a51533 100644
--- a/src/polyp/utf8.h
+++ b/src/polyp/utf8.h
@@ -22,7 +22,14 @@
USA.
***/
+/** \file
+ * UTF8 Validation functions
+ */
+
+/** Test if the specified strings qualifies as valid UTF8. Return the string if so, otherwise NULL */
const char *pa_utf8_valid(const char *str);
+
+/** Filter all invalid UTF8 characters from the specified string, returning a new fully UTF8 valid string. Don't forget to free the returned string with pa_xfree() */
char *pa_utf8_filter(const char *str);
#endif