normalizer.h 1.5 KB

12345678910111213141516171819202122232425262728293031323334353637
  1. /*
  2. +----------------------------------------------------------------------+
  3. | PHP Version 5 |
  4. +----------------------------------------------------------------------+
  5. | This source file is subject to version 3.01 of the PHP license, |
  6. | that is bundled with this package in the file LICENSE, and is |
  7. | available through the world-wide-web at the following url: |
  8. | http://www.php.net/license/3_01.txt |
  9. | If you did not receive a copy of the PHP license and are unable to |
  10. | obtain it through the world-wide-web, please send a note to |
  11. | license@php.net so we can mail you a copy immediately. |
  12. +----------------------------------------------------------------------+
  13. | Authors: Ed Batutis <ed@batutis.com> |
  14. +----------------------------------------------------------------------+
  15. */
  16. #ifndef NORMALIZER_NORMALIZER_H
  17. #define NORMALIZER_NORMALIZER_H
  18. #include <php.h>
  19. #include <unicode/utypes.h>
  20. #include <unicode/unorm.h>
  21. #define NORMALIZER_NONE UNORM_NONE
  22. #define NORMALIZER_FORM_D UNORM_NFD
  23. #define NORMALIZER_NFD UNORM_NFD
  24. #define NORMALIZER_FORM_KD UNORM_NFKD
  25. #define NORMALIZER_NFKD UNORM_NFKD
  26. #define NORMALIZER_FORM_C UNORM_NFC
  27. #define NORMALIZER_NFC UNORM_NFC
  28. #define NORMALIZER_FORM_KC UNORM_NFKC
  29. #define NORMALIZER_NFKC UNORM_NFKC
  30. #define NORMALIZER_DEFAULT UNORM_DEFAULT
  31. void normalizer_register_constants( INIT_FUNC_ARGS );
  32. #endif // NORMALIZER_NORMALIZER_H