Skip to content

Commit 97e7f04

Browse files
committed
Zend operators
1 parent 49c80ae commit 97e7f04

File tree

2 files changed

+1
-3
lines changed

2 files changed

+1
-3
lines changed

Zend/zend_operators.c

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2679,8 +2679,6 @@ ZEND_API zend_string* ZEND_FASTCALL zend_string_tolower_ex(zend_string *str, boo
26792679
}
26802680
/* }}} */
26812681

2682-
extern ZEND_API inline zend_string* zend_string_tolower(zend_string *str);
2683-
26842682
ZEND_API int ZEND_FASTCALL zend_binary_strcmp(const char *s1, size_t len1, const char *s2, size_t len2) /* {{{ */
26852683
{
26862684
int retval;

Zend/zend_operators.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -420,7 +420,7 @@ ZEND_API char* ZEND_FASTCALL zend_str_tolower_dup(const char *source, siz
420420
ZEND_API char* ZEND_FASTCALL zend_str_tolower_dup_ex(const char *source, size_t length);
421421
ZEND_API zend_string* ZEND_FASTCALL zend_string_tolower_ex(zend_string *str, bool persistent);
422422

423-
ZEND_API inline zend_string* zend_string_tolower(zend_string *str) {
423+
static inline zend_string* zend_string_tolower(zend_string *str) {
424424
return zend_string_tolower_ex(str, 0);
425425
}
426426

0 commit comments

Comments
 (0)