mirror of
https://github.com/daveallie/crosspoint-reader.git
synced 2026-02-06 23:57:39 +03:00
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);
|