locale_methods.h 1.8 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647
  1. /*
  2. +----------------------------------------------------------------------+
  3. | PHP Version 7 |
  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. | Author: Kirti Velankar <kirtig@yahoo-inc.com> |
  14. +----------------------------------------------------------------------+
  15. */
  16. #ifndef LOCALE_METHODS_H
  17. #define LOCALE_METHODS_H
  18. #include <php.h>
  19. PHP_FUNCTION( locale_get_primary_language );
  20. PHP_FUNCTION( locale_get_script );
  21. PHP_FUNCTION( locale_get_region );
  22. PHP_FUNCTION( locale_get_all_variants);
  23. PHP_NAMED_FUNCTION( zif_locale_get_default );
  24. PHP_NAMED_FUNCTION( zif_locale_set_default );
  25. PHP_FUNCTION( locale_get_display_name );
  26. PHP_FUNCTION( locale_get_display_language );
  27. PHP_FUNCTION( locale_get_display_script );
  28. PHP_FUNCTION( locale_get_display_region );
  29. PHP_FUNCTION( locale_get_display_variant );
  30. PHP_FUNCTION( locale_get_keywords );
  31. PHP_FUNCTION( locale_canonicalize);
  32. PHP_FUNCTION( locale_compose);
  33. PHP_FUNCTION( locale_parse);
  34. PHP_FUNCTION( locale_filter_matches);
  35. PHP_FUNCTION( locale_lookup);
  36. PHP_FUNCTION( locale_canonicalize);
  37. PHP_FUNCTION( locale_accept_from_http);
  38. #endif // LOCALE_METHODS_H