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 17 #ifndef BREAKITERATOR_METHODS_H 18 #define BREAKITERATOR_METHODS_H 19 20 #include <php.h> 21 22 PHP_METHOD(BreakIterator, __construct); 23 24 PHP_FUNCTION(breakiter_create_word_instance); 25 26 PHP_FUNCTION(breakiter_create_line_instance); 27 28 PHP_FUNCTION(breakiter_create_character_instance); 29 30 PHP_FUNCTION(breakiter_create_sentence_instance); 31 32 PHP_FUNCTION(breakiter_create_title_instance); 33 34 PHP_FUNCTION(breakiter_create_code_point_instance); 35 36 PHP_FUNCTION(breakiter_get_text); 37 38 PHP_FUNCTION(breakiter_set_text); 39 40 PHP_FUNCTION(breakiter_first); 41 42 PHP_FUNCTION(breakiter_last); 43 44 PHP_FUNCTION(breakiter_previous); 45 46 PHP_FUNCTION(breakiter_next); 47 48 PHP_FUNCTION(breakiter_current); 49 50 PHP_FUNCTION(breakiter_following); 51 52 PHP_FUNCTION(breakiter_preceding); 53 54 PHP_FUNCTION(breakiter_is_boundary); 55 56 PHP_FUNCTION(breakiter_get_locale); 57 58 PHP_FUNCTION(breakiter_get_parts_iterator); 59 60 PHP_FUNCTION(breakiter_get_error_code); 61 62 PHP_FUNCTION(breakiter_get_error_message); 63 64 #endif 65