diff options
author | foobar <sniper@php.net> | 2003-02-17 06:28:07 +0000 |
---|---|---|
committer | foobar <sniper@php.net> | 2003-02-17 06:28:07 +0000 |
commit | 7e9fb9f21f2a993197b6b88bb2ea705f4fcc9c2a (patch) | |
tree | ffb757542cd51fb27e6951972923fc8cc98bedfe /ext/standard/datetime.h | |
parent | d3e006eafd09dd3354528c2552e1d06b87f1bc33 (diff) | |
download | php-git-7e9fb9f21f2a993197b6b88bb2ea705f4fcc9c2a.tar.gz |
- Cleaned this mess a bit:
. Centralized the functions sunrise/sunset to php_sunrise_sunset
to lessen duplicate code.
. Made wrapper function php_do_date_sunrise_sunset() to lessen
duplicate code.
. Coding style fixes.
. renamed sunfuncs.h -> php_sunfuncs.h
Diffstat (limited to 'ext/standard/datetime.h')
-rw-r--r-- | ext/standard/datetime.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ext/standard/datetime.h b/ext/standard/datetime.h index 08feba26a8..8aef601797 100644 --- a/ext/standard/datetime.h +++ b/ext/standard/datetime.h @@ -37,7 +37,7 @@ PHP_FUNCTION(gmstrftime); #endif PHP_FUNCTION(strtotime); -int idate(char format, int timestamp, int gm); +int php_idate(char format, int timestamp, int gm); extern char *php_std_date(time_t t); void php_mktime(INTERNAL_FUNCTION_PARAMETERS, int gm); #if HAVE_STRFTIME |