mirror of
https://github.com/php/php-src.git
synced 2025-08-15 21:48:51 +02:00
reduce size of stream struct
32 bytes are spared on 64-bit build
This commit is contained in:
parent
4b41973ba1
commit
0ca15cbeba
3 changed files with 19 additions and 15 deletions
|
@ -133,8 +133,8 @@ PHPAPI char *php_stristr(char *s, char *t, size_t s_len, size_t t_len);
|
|||
PHPAPI zend_string *php_str_to_str(char *haystack, size_t length, char *needle,
|
||||
size_t needle_len, char *str, size_t str_len);
|
||||
PHPAPI zend_string *php_trim(zend_string *str, char *what, size_t what_len, int mode);
|
||||
PHPAPI size_t php_strip_tags(char *rbuf, size_t len, int *state, const char *allow, size_t allow_len);
|
||||
PHPAPI size_t php_strip_tags_ex(char *rbuf, size_t len, int *stateptr, const char *allow, size_t allow_len, zend_bool allow_tag_spaces);
|
||||
PHPAPI size_t php_strip_tags(char *rbuf, size_t len, uint8_t *state, const char *allow, size_t allow_len);
|
||||
PHPAPI size_t php_strip_tags_ex(char *rbuf, size_t len, uint8_t *stateptr, const char *allow, size_t allow_len, zend_bool allow_tag_spaces);
|
||||
PHPAPI void php_implode(const zend_string *delim, zval *arr, zval *return_value);
|
||||
PHPAPI void php_explode(const zend_string *delim, zend_string *str, zval *return_value, zend_long limit);
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue