X-Git-Url: http://www.project-moonshot.org/gitweb/?a=blobdiff_plain;f=src%2Futf.h;h=e2d6c59082a4b5be329ea5ff6a2918a8c3dcb40a;hb=198d537be76ae4debaac7f730bb2c591b04ab1df;hp=75d7b6eb8972e826fe065c592e4ccf354565a405;hpb=2f4d6f8ae768886f8ee831bae169763856b5a827;p=jansson.git diff --git a/src/utf.h b/src/utf.h index 75d7b6e..e2d6c59 100644 --- a/src/utf.h +++ b/src/utf.h @@ -1,5 +1,5 @@ /* - * Copyright (c) 2009 Petri Lehtinen + * Copyright (c) 2009, 2010 Petri Lehtinen * * Jansson is free software; you can redistribute it and/or modify * it under the terms of the MIT license. See LICENSE for details. @@ -8,10 +8,26 @@ #ifndef UTF_H #define UTF_H +#ifdef HAVE_CONFIG_H +#include +#endif + +#ifdef HAVE_INTTYPES_H +/* inttypes.h includes stdint.h in a standard environment, so there's +no need to include stdint.h separately. If inttypes.h doesn't define +int32_t, it's defined in config.h. */ +#include +#else +#ifdef _WIN32 +typedef int int32_t; +#endif +#endif + int utf8_encode(int codepoint, char *buffer, int *size); int utf8_check_first(char byte); -int utf8_check_full(const char *buffer, int size); +int utf8_check_full(const char *buffer, int size, int32_t *codepoint); +const char *utf8_iterate(const char *buffer, int32_t *codepoint); int utf8_check_string(const char *string, int length);