]> granicus.if.org Git - php/commitdiff
Flag additional unicode safe funcs
authorSara Golemon <pollita@php.net>
Mon, 21 Jan 2008 06:36:02 +0000 (06:36 +0000)
committerSara Golemon <pollita@php.net>
Mon, 21 Jan 2008 06:36:02 +0000 (06:36 +0000)
ext/calendar/cal_unix.c
ext/calendar/easter.c

index 77d2fdf279c43eb5df14f39e4a221ff9014242bd..88bee49b0781ae2a6a496fb9ffcdbd036ce22645 100644 (file)
@@ -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)
 {
index bd787de424271f807ff560cfa04f1477b2e2d9c0..1b7de0e49e4de05761ab56ec9ef4e869193519a4 100644 (file)
@@ -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)
 {