summaryrefslogtreecommitdiffstats
path: root/src/libsystemd/sd-utf8/sd-utf8.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/libsystemd/sd-utf8/sd-utf8.c')
-rw-r--r--src/libsystemd/sd-utf8/sd-utf8.c18
1 files changed, 18 insertions, 0 deletions
diff --git a/src/libsystemd/sd-utf8/sd-utf8.c b/src/libsystemd/sd-utf8/sd-utf8.c
new file mode 100644
index 0000000..78323cf
--- /dev/null
+++ b/src/libsystemd/sd-utf8/sd-utf8.c
@@ -0,0 +1,18 @@
+/* SPDX-License-Identifier: LGPL-2.1+ */
+
+#include "sd-utf8.h"
+
+#include "utf8.h"
+#include "util.h"
+
+_public_ const char *sd_utf8_is_valid(const char *s) {
+ assert_return(s, NULL);
+
+ return utf8_is_valid(s);
+}
+
+_public_ const char *sd_ascii_is_valid(const char *s) {
+ assert_return(s, NULL);
+
+ return ascii_is_valid(s);
+}