9 lines
171 B
C++
9 lines
171 B
C++
#pragma once
|
|
|
|
#include <cstdint>
|
|
|
|
#define REPLACEMENT_GLYPH 0xFFFD
|
|
|
|
int utf8CodepointLen(const unsigned char c);
|
|
uint32_t utf8NextCodepoint(const unsigned char** string);
|