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 | Author: Kirti Velankar <kirtig@yahoo-inc.com> | 14 +----------------------------------------------------------------------+ 15 */ 16 17 #ifndef LOCALE_METHODS_H 18 #define LOCALE_METHODS_H 19 20 #include <php.h> 21 22 PHP_FUNCTION( locale_get_primary_language ); 23 PHP_FUNCTION( locale_get_script ); 24 PHP_FUNCTION( locale_get_region ); 25 PHP_FUNCTION( locale_get_all_variants); 26 27 PHP_NAMED_FUNCTION( zif_locale_get_default ); 28 PHP_NAMED_FUNCTION( zif_locale_set_default ); 29 30 PHP_FUNCTION( locale_get_display_name ); 31 PHP_FUNCTION( locale_get_display_language ); 32 PHP_FUNCTION( locale_get_display_script ); 33 PHP_FUNCTION( locale_get_display_region ); 34 PHP_FUNCTION( locale_get_display_variant ); 35 36 PHP_FUNCTION( locale_get_keywords ); 37 PHP_FUNCTION( locale_canonicalize); 38 39 PHP_FUNCTION( locale_compose); 40 PHP_FUNCTION( locale_parse); 41 42 PHP_FUNCTION( locale_filter_matches); 43 PHP_FUNCTION( locale_lookup); 44 PHP_FUNCTION( locale_canonicalize); 45 PHP_FUNCTION( locale_accept_from_http); 46 47 #endif // LOCALE_METHODS_H 48