breakiterator_methods.h 1.9 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364
  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. | Authors: Gustavo Lopes <cataphract@php.net> |
  14. +----------------------------------------------------------------------+
  15. */
  16. #ifndef BREAKITERATOR_METHODS_H
  17. #define BREAKITERATOR_METHODS_H
  18. #include <php.h>
  19. PHP_METHOD(BreakIterator, __construct);
  20. PHP_FUNCTION(breakiter_create_word_instance);
  21. PHP_FUNCTION(breakiter_create_line_instance);
  22. PHP_FUNCTION(breakiter_create_character_instance);
  23. PHP_FUNCTION(breakiter_create_sentence_instance);
  24. PHP_FUNCTION(breakiter_create_title_instance);
  25. PHP_FUNCTION(breakiter_create_code_point_instance);
  26. PHP_FUNCTION(breakiter_get_text);
  27. PHP_FUNCTION(breakiter_set_text);
  28. PHP_FUNCTION(breakiter_first);
  29. PHP_FUNCTION(breakiter_last);
  30. PHP_FUNCTION(breakiter_previous);
  31. PHP_FUNCTION(breakiter_next);
  32. PHP_FUNCTION(breakiter_current);
  33. PHP_FUNCTION(breakiter_following);
  34. PHP_FUNCTION(breakiter_preceding);
  35. PHP_FUNCTION(breakiter_is_boundary);
  36. PHP_FUNCTION(breakiter_get_locale);
  37. PHP_FUNCTION(breakiter_get_parts_iterator);
  38. PHP_FUNCTION(breakiter_get_error_code);
  39. PHP_FUNCTION(breakiter_get_error_message);
  40. #endif