Merge branch '1.3'
[jansson.git] / src / utf.h
1 /*
2  * Copyright (c) 2009, 2010 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 #ifdef HAVE_CONFIG_H
12 #include <config.h>
13 #endif
14
15 #ifdef HAVE_INTTYPES_H
16 /* inttypes.h includes stdint.h in a standard environment, so there's
17 no need to include stdint.h separately. If inttypes.h doesn't define
18 int32_t, it's defined in config.h. */
19 #include <inttypes.h>
20 #else
21 #ifdef _WIN32
22 typedef int int32_t;
23 #endif
24 #endif
25
26 int utf8_encode(int codepoint, char *buffer, int *size);
27
28 int utf8_check_first(char byte);
29 int utf8_check_full(const char *buffer, int size, int32_t *codepoint);
30 const char *utf8_iterate(const char *buffer, int32_t *codepoint);
31
32 int utf8_check_string(const char *string, int length);
33
34 #endif