utf.h 778 B

12345678910111213141516171819202122232425262728
  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. #ifndef UTF_H
  8. #define UTF_H
  9. #include <config.h>
  10. #ifdef HAVE_INTTYPES_H
  11. /* inttypes.h includes stdint.h in a standard environment, so there's
  12. no need to include stdint.h separately. If inttypes.h doesn't define
  13. int32_t, it's defined in config.h. */
  14. #include <inttypes.h>
  15. #endif
  16. int utf8_encode(int codepoint, char *buffer, int *size);
  17. int utf8_check_first(char byte);
  18. int utf8_check_full(const char *buffer, int size, int32_t *codepoint);
  19. const char *utf8_iterate(const char *buffer, int32_t *codepoint);
  20. int utf8_check_string(const char *string, int length);
  21. #endif