summaryrefslogtreecommitdiff
path: root/lib/unicode.c
blob: b52431f4f10f0531f5842debd9a98ad171982ea7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
#include "unicode.h"
#include <glib.h>

const char *
next_char(const char * c)
{
	return g_utf8_next_char(c);
}
uint32_t
get_codepoint(const char * c)
{
	return g_utf8_get_char(c);
}