unicode.h 850 B

12345678910111213141516171819202122232425262728293031
  1. /*
  2. * Copyright 2021 The OpenSSL Project Authors. All Rights Reserved.
  3. *
  4. * Licensed under the Apache License 2.0 (the "License"). You may not use
  5. * this file except in compliance with the License. You can obtain a copy
  6. * in the file LICENSE in the source distribution or at
  7. * https://www.openssl.org/source/license.html
  8. */
  9. #ifndef OSSL_INTERNAL_UNICODE_H
  10. # define OSSL_INTERNAL_UNICODE_H
  11. # pragma once
  12. typedef enum {
  13. SURROGATE_MIN = 0xd800UL,
  14. SURROGATE_MAX = 0xdfffUL,
  15. UNICODE_MAX = 0x10ffffUL,
  16. UNICODE_LIMIT
  17. } UNICODE_CONSTANTS;
  18. static ossl_unused ossl_inline int is_unicode_surrogate(unsigned long value)
  19. {
  20. return value >= SURROGATE_MIN && value <= SURROGATE_MAX;
  21. }
  22. static ossl_unused ossl_inline int is_unicode_valid(unsigned long value)
  23. {
  24. return value <= UNICODE_MAX && !is_unicode_surrogate(value);
  25. }
  26. #endif