xref: /PHP-5.5/ext/intl/locale/locale_methods.h (revision 9762609c)
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    | Author: Kirti Velankar <kirtig@yahoo-inc.com>                        |
14    +----------------------------------------------------------------------+
15 */
16 
17 /* $Id$ */
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 // LOCALE_METHODS_H
50