summaryrefslogtreecommitdiffstats
path: root/src/pulse/utf8.h
diff options
context:
space:
mode:
authorLennart Poettering <lennart@poettering.net>2009-02-04 17:11:56 +0100
committerLennart Poettering <lennart@poettering.net>2009-02-04 17:11:56 +0100
commit0fc59e4585937b155125ef01b0e8c2ae9e5f6cee (patch)
tree12f8c48f96be1f1b70ff77b41f0995188992e1b9 /src/pulse/utf8.h
parentce76216bce9981c31ebab2ca5a97d6c5c0509edd (diff)
add new API pa_ascii_valid(), pa_ascii_filter()
Diffstat (limited to 'src/pulse/utf8.h')
-rw-r--r--src/pulse/utf8.h6
1 files changed, 6 insertions, 0 deletions
diff --git a/src/pulse/utf8.h b/src/pulse/utf8.h
index 4d751953..b9f74952 100644
--- a/src/pulse/utf8.h
+++ b/src/pulse/utf8.h
@@ -36,9 +36,15 @@ PA_C_DECL_BEGIN
/** Test if the specified strings qualifies as valid UTF8. Return the string if so, otherwise NULL */
char *pa_utf8_valid(const char *str) PA_GCC_PURE;
+/** Test if the specified strings qualifies as valid 7-bit ASCII. Return the string if so, otherwise NULL. \since 0.9.15 */
+char *pa_ascii_valid(const char *str) PA_GCC_PURE;
+
/** 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);
+/** Filter all invalid ASCII characters from the specified string, returning a new fully ASCII valid string. Don't forget to free the returned string with pa_xfree(). \since 0.9.15 */
+char *pa_ascii_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);