Browse Source

Flag additional unicode safe funcs

experimental/first_unicode_implementation
Sara Golemon 19 years ago
parent
commit
4106cbf6d1
  1. 4
      ext/calendar/cal_unix.c
  2. 4
      ext/calendar/easter.c

4
ext/calendar/cal_unix.c

@ -24,7 +24,7 @@
#include "sdncal.h"
#include <time.h>
/* {{{ proto int unixtojd([int timestamp])
/* {{{ proto int unixtojd([int timestamp]) U
Convert UNIX timestamp to Julian Day */
PHP_FUNCTION(unixtojd)
{
@ -56,7 +56,7 @@ PHP_FUNCTION(unixtojd)
}
/* }}} */
/* {{{ proto int jdtounix(int jday)
/* {{{ proto int jdtounix(int jday) U
Convert Julian Day to UNIX timestamp */
PHP_FUNCTION(jdtounix)
{

4
ext/calendar/easter.c

@ -121,7 +121,7 @@ static void _cal_easter(INTERNAL_FUNCTION_PARAMETERS, int gm)
}
/* {{{ proto int easter_date([int year])
/* {{{ proto int easter_date([int year]) U
Return the timestamp of midnight on Easter of a given year (defaults to current year) */
PHP_FUNCTION(easter_date)
{
@ -129,7 +129,7 @@ PHP_FUNCTION(easter_date)
}
/* }}} */
/* {{{ proto int easter_days([int year, [int method]])
/* {{{ proto int easter_days([int year, [int method]]) U
Return the number of days after March 21 that Easter falls on for a given year (defaults to current year) */
PHP_FUNCTION(easter_days)
{

Loading…
Cancel
Save