ofxMsdfgen/libs/msdf-atlas-gen/include/msdf-atlas-gen/utf8.h

12 lines
222 B
C++

#pragma once
#include <vector>
#include "types.h"
namespace msdf_atlas {
/// Decodes the UTF-8 string into an array of Unicode codepoints
void utf8Decode(std::vector<unicode_t> &codepoints, const char *utf8String);
}