mirror of
https://github.com/php/php-src.git
synced 2025-08-15 21:48:51 +02:00
unstatic'fy is_numeric_string()
This commit is contained in:
parent
e956a266e2
commit
c279668168
2 changed files with 2 additions and 3 deletions
|
@ -34,8 +34,6 @@
|
|||
#include "functions/number.h"
|
||||
#endif
|
||||
|
||||
static inline int is_numeric_string(char *str, int length, long *lval, double *dval);
|
||||
|
||||
ZEND_API void convert_scalar_to_number(zval *op)
|
||||
{
|
||||
char *strval;
|
||||
|
@ -1237,7 +1235,7 @@ ZEND_API void zendi_smart_strcmp(zval *result, zval *s1, zval *s2)
|
|||
*/
|
||||
|
||||
#if 1
|
||||
static inline int is_numeric_string(char *str, int length, long *lval, double *dval)
|
||||
ZEND_API inline int is_numeric_string(char *str, int length, long *lval, double *dval)
|
||||
{
|
||||
long local_lval;
|
||||
double local_dval;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue