sanskrit-iast/utf8.h

13 lines
290 B
C
Raw Normal View History

2018-04-25 19:30:49 +02:00
/* SPDX-License-Identifier: GPL-2.0 */
2018-04-25 15:57:31 +02:00
#ifndef __UTF8_H
#define __UTF8_H
unsigned long utf8_unpack_char(const char *src);
2018-04-25 15:57:31 +02:00
void utf8_pack_char(char *dest, unsigned long c);
unsigned int utf8_char_length(unsigned long c);
char *utf8_code_to_string(unsigned long c);
#endif /* __UTF8_H */