codepointiterator_methods.cpp 1.6 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344
  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: Gustavo Lopes <cataphract@php.net> |
  14. +----------------------------------------------------------------------+
  15. */
  16. #include "codepointiterator_internal.h"
  17. extern "C" {
  18. #define USE_BREAKITERATOR_POINTER 1
  19. #include "breakiterator_class.h"
  20. }
  21. using PHP::CodePointBreakIterator;
  22. static inline CodePointBreakIterator *fetch_cpbi(BreakIterator_object *bio) {
  23. return (CodePointBreakIterator*)bio->biter;
  24. }
  25. U_CFUNC PHP_FUNCTION(cpbi_get_last_code_point)
  26. {
  27. BREAKITER_METHOD_INIT_VARS;
  28. object = getThis();
  29. if (zend_parse_parameters_none() == FAILURE) {
  30. intl_error_set(NULL, U_ILLEGAL_ARGUMENT_ERROR,
  31. "cpbi_get_last_code_point: bad arguments", 0 TSRMLS_CC);
  32. RETURN_FALSE;
  33. }
  34. BREAKITER_METHOD_FETCH_OBJECT;
  35. RETURN_LONG(fetch_cpbi(bio)->getLastCodePoint());
  36. }