Merge branch '1.1'
[jansson.git] / src / utf.h
1 /*
2  * Copyright (c) 2009 Petri Lehtinen <petri@digip.org>
3  *
4  * Jansson is free software; you can redistribute it and/or modify
5  * it under the terms of the MIT license. See LICENSE for details.
6  */
7
8 #ifndef UTF_H
9 #define UTF_H
10
11 int utf8_encode(int codepoint, char *buffer, int *size);
12
13 int utf8_check_first(char byte);
14 int utf8_check_full(const char *buffer, int size, int32_t *codepoint);
15 const char *utf8_iterate(const char *buffer, int32_t *codepoint);
16
17 int utf8_check_string(const char *string, int length);
18
19 #endif