aboutsummaryrefslogtreecommitdiff
path: root/include/mglpp/system/Utf8.hpp
blob: 4f6a39a736ac6285b4b8bea4e8f2a795685f1413 (plain)
1
2
3
4
5
6
7
8
9
10
11
#ifndef MGLPP_UTF8_HPP
#define MGLPP_UTF8_HPP

#include <stddef.h>
#include <stdint.h>

namespace mgl {
    bool utf8_decode(const unsigned char *str, size_t size, uint32_t *decoded_codepoint, size_t *codepoint_length);
}

#endif /* MGLPP_UTF8_HPP */