/jansson/src/utf.h

http://github.com/nicolasff/webdis · C Header · 39 lines · 20 code · 9 blank · 10 comment · 0 complexity · 9394112f3d953d3618ee68de79db00af MD5 · raw file

  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. #ifdef HAVE_CONFIG_H
  10. #include <config.h>
  11. #ifdef HAVE_INTTYPES_H
  12. /* inttypes.h includes stdint.h in a standard environment, so there's
  13. no need to include stdint.h separately. If inttypes.h doesn't define
  14. int32_t, it's defined in config.h. */
  15. #include <inttypes.h>
  16. #endif /* HAVE_INTTYPES_H */
  17. #else /* !HAVE_CONFIG_H */
  18. #ifdef _WIN32
  19. typedef int int32_t;
  20. #else /* !_WIN32 */
  21. /* Assume a standard environment */
  22. #include <inttypes.h>
  23. #endif /* _WIN32 */
  24. #endif /* HAVE_CONFIG_H */
  25. int utf8_encode(int codepoint, char *buffer, int *size);
  26. int utf8_check_first(char byte);
  27. int utf8_check_full(const char *buffer, int size, int32_t *codepoint);
  28. const char *utf8_iterate(const char *buffer, int32_t *codepoint);
  29. int utf8_check_string(const char *string, int length);
  30. #endif