1234567891011121314151617181920212223242526272829303132 |
- #ifndef GREORIANCALENDAR_METHODS_H
- #define GREORIANCALENDAR_METHODS_H
- #include <php.h>
- PHP_FUNCTION(intlgregcal_create_instance);
- PHP_METHOD(IntlGregorianCalendar, __construct);
- PHP_FUNCTION(intlgregcal_set_gregorian_change);
- PHP_FUNCTION(intlgregcal_get_gregorian_change);
- PHP_FUNCTION(intlgregcal_is_leap_year);
- #endif
|