1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19 #ifndef LOCALE_METHODS_H
20 #define LOCALE_METHODS_H
21
22 #include <php.h>
23
24 PHP_FUNCTION( locale_get_primary_language );
25 PHP_FUNCTION( locale_get_script );
26 PHP_FUNCTION( locale_get_region );
27 PHP_FUNCTION( locale_get_all_variants);
28
29 PHP_NAMED_FUNCTION( zif_locale_get_default );
30 PHP_NAMED_FUNCTION( zif_locale_set_default );
31
32 PHP_FUNCTION( locale_get_display_name );
33 PHP_FUNCTION( locale_get_display_language );
34 PHP_FUNCTION( locale_get_display_script );
35 PHP_FUNCTION( locale_get_display_region );
36 PHP_FUNCTION( locale_get_display_variant );
37
38 PHP_FUNCTION( locale_get_keywords );
39 PHP_FUNCTION( locale_canonicalize);
40
41 PHP_FUNCTION( locale_compose);
42 PHP_FUNCTION( locale_parse);
43
44 PHP_FUNCTION( locale_filter_matches);
45 PHP_FUNCTION( locale_lookup);
46 PHP_FUNCTION( locale_canonicalize);
47 PHP_FUNCTION( locale_accept_from_http);
48
49 #endif