diff options
author | Stig Bakken <ssb@php.net> | 2001-10-10 10:14:51 +0000 |
---|---|---|
committer | Stig Bakken <ssb@php.net> | 2001-10-10 10:14:51 +0000 |
commit | f3d2d4c630984651d8aeaee721f814dc2ce14489 (patch) | |
tree | 6999cd7d919bf983e3a653b8684af125c75ce8fa /ext/standard/php_versioning.h | |
parent | ffd40bf495849c3eac967b31df54882cd0c49b63 (diff) | |
download | php-git-f3d2d4c630984651d8aeaee721f814dc2ce14489.tar.gz |
@Added version_{lt,le,gt,ge,eq} functions (Stig)
Diffstat (limited to 'ext/standard/php_versioning.h')
-rw-r--r-- | ext/standard/php_versioning.h | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/ext/standard/php_versioning.h b/ext/standard/php_versioning.h index f25a80e504..76286d71f6 100644 --- a/ext/standard/php_versioning.h +++ b/ext/standard/php_versioning.h @@ -27,5 +27,10 @@ PHPAPI char *php_canonicalize_version(const char *); PHPAPI int php_version_compare(const char *, const char *); PHP_FUNCTION(version_compare); +PHP_FUNCTION(version_gt); +PHP_FUNCTION(version_ge); +PHP_FUNCTION(version_lt); +PHP_FUNCTION(version_le); +PHP_FUNCTION(version_eq); #endif |