blob: 7fa10b8e6040ca4114350ce81c3173a2ef046f0a (
plain) (
blame)
1
2
3
4
5
6
7
|
#ifndef QEMU_UNICODE_H
#define QEMU_UNICODE_H
int mod_utf8_codepoint(const char *s, size_t n, char **end);
ssize_t mod_utf8_encode(char buf[], size_t bufsz, int codepoint);
#endif
|