mirror of
https://github.com/gbdev/rgbds.git
synced 2025-11-20 18:22:07 +00:00
11 lines
234 B
C++
11 lines
234 B
C++
// SPDX-License-Identifier: MIT
|
|
|
|
#ifndef RGBDS_EXTERN_UTF8DECODER_HPP
|
|
#define RGBDS_EXTERN_UTF8DECODER_HPP
|
|
|
|
#include <stdint.h>
|
|
|
|
uint32_t decode(uint32_t *state, uint32_t *codep, uint8_t byte);
|
|
|
|
#endif // RGBDS_EXTERN_UTF8DECODER_HPP
|