12345678910111213141516171819202122232425262728 |
- #ifndef PHP_VERSIONING_H
- #define PHP_VERSIONING_H
- #include "ext/standard/basic_functions.h"
- PHPAPI char *php_canonicalize_version(const char *);
- PHPAPI int php_version_compare(const char *, const char *);
- PHP_FUNCTION(version_compare);
- #endif
|