Visual Computing Library
Loading...
Searching...
No Matches
utf8.h
1// Copyright (c) 2008-2009 Bjoern Hoehrmann <bjoern@hoehrmann.de>
2// See http://bjoern.hoehrmann.de/utf-8/decoder/dfa/ for details.
3
4#ifndef VCL_BGFX_TEXT_FONT_UTF8_H
5#define VCL_BGFX_TEXT_FONT_UTF8_H
6
7#include <stdint.h>
8
9#define UTF8_ACCEPT 0
10#define UTF8_REJECT 1
11
12namespace bgfx {
13
14uint32_t utf8_decode(uint32_t* _state, uint32_t* _codep, uint8_t _ch);
15
16} // namespace bgfx
17
18#endif // VCL_BGFX_TEXT_FONT_UTF8_H