Branch data Line data Source code
1 : : /* SPDX-License-Identifier: LGPL-2.1+ */ 2 : : 3 : : #include "sd-utf8.h" 4 : : 5 : : #include "utf8.h" 6 : : #include "util.h" 7 : : 8 : 0 : _public_ const char *sd_utf8_is_valid(const char *s) { 9 [ # # # # ]: 0 : assert_return(s, NULL); 10 : : 11 : 0 : return utf8_is_valid(s); 12 : : } 13 : : 14 : 0 : _public_ const char *sd_ascii_is_valid(const char *s) { 15 [ # # # # ]: 0 : assert_return(s, NULL); 16 : : 17 : 0 : return ascii_is_valid(s); 18 : : }