summaryrefslogtreecommitdiffstats
path: root/src/polyp/utf8.h
diff options
context:
space:
mode:
authorPierre Ossman <ossman@cendio.se>2006-05-18 08:19:07 +0000
committerPierre Ossman <ossman@cendio.se>2006-05-18 08:19:07 +0000
commit4981092a797c18c1be8f2d5e0864c8b30f4130a0 (patch)
tree3f044389b72744387bbc17d860179b7ed1841452 /src/polyp/utf8.h
parent40d9f5d00d99d55d3dbb20801c4842ae8d0d95ac (diff)
And functions for convertion to and from current locale and UTF-8.
git-svn-id: file:///home/lennart/svn/public/pulseaudio/trunk@931 fefdeb5f-60dc-0310-8127-8f9354f1896f
Diffstat (limited to 'src/polyp/utf8.h')
-rw-r--r--src/polyp/utf8.h6
1 files changed, 6 insertions, 0 deletions
diff --git a/src/polyp/utf8.h b/src/polyp/utf8.h
index 3cc3a7d0..55b8d2e4 100644
--- a/src/polyp/utf8.h
+++ b/src/polyp/utf8.h
@@ -36,6 +36,12 @@ 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);
+/** Convert a UTF-8 string to the current locale. Free the string using pa_xfree(). */
+char* pa_utf8_to_locale (const char *str);
+
+/** Convert a string in the current locale to UTF-8. Free the string using pa_xfree(). */
+char* pa_locale_to_utf8 (const char *str);
+
PA_C_DECL_END
#endif