| 1 | // SPDX-License-Identifier: GPL-3.0-or-later |
| 2 | |
| 3 | #ifndef NETDATA_UTF8_SANITIZER_H |
| 4 | #define NETDATA_UTF8_SANITIZER_H |
| 5 | |
| 6 | #include "../libnetdata.h" |
| 7 | |
| 8 | size_t text_sanitize(unsigned char *dst, const unsigned char *src, size_t dst_size, const unsigned char *char_map, bool utf, const char *empty, size_t *multibyte_length); |
| 9 | |
| 10 | #endif //NETDATA_UTF8_SANITIZER_H |