1
2
3
4
5
6
7
8
9
10
11
12
13
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