ext/standard/php_string.h: Remove declarations that do not have an implementation (#15402)

This was overlooked, by my younger self, in GH-8195.
This commit is contained in:
Gina Peter Banyard 2024-08-14 20:04:51 +01:00 committed by GitHub
parent 53d6ed8a6b
commit 059fe6c28b
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -58,10 +58,6 @@ PHPAPI void php_explode(const zend_string *delim, zend_string *str, zval *return
PHPAPI size_t php_strspn(const char *s1, const char *s2, const char *s1_end, const char *s2_end); PHPAPI size_t php_strspn(const char *s1, const char *s2, const char *s1_end, const char *s2_end);
PHPAPI size_t php_strcspn(const char *s1, const char *s2, const char *s1_end, const char *s2_end); PHPAPI size_t php_strcspn(const char *s1, const char *s2, const char *s1_end, const char *s2_end);
PHPAPI int string_natural_compare_function_ex(zval *result, zval *op1, zval *op2, bool case_insensitive);
PHPAPI int string_natural_compare_function(zval *result, zval *op1, zval *op2);
PHPAPI int string_natural_case_compare_function(zval *result, zval *op1, zval *op2);
PHPAPI bool php_binary_string_shuffle(php_random_algo_with_state engine, char *str, zend_long len); PHPAPI bool php_binary_string_shuffle(php_random_algo_with_state engine, char *str, zend_long len);
#ifdef _REENTRANT #ifdef _REENTRANT