aboutsummaryrefslogtreecommitdiff
path: root/utf9/utf9.h
blob: 73a15765864138aa82d7d1e7f2bd9ea7b9fb0dec (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
#ifndef UTF9_H
#define UTF9_H

#include <stddef.h>
#include <tri.h>

size_t utf8_to_utf9(tri_t *u9, size_t u9_len, const uint8_t *u8, size_t u8_len, size_t *u8_read);

size_t utf9_to_utf8(uint8_t *u8, size_t u8_len, const tri_t *u9, size_t u9_len, size_t *u9_read);

#endif