Home
last modified time | relevance | path

Searched refs:signch (Results 1 – 1 of 1) sorted by relevance

/PHP-7.1/ext/bcmath/libbcmath/src/
H A Dnum2str.c50 int index, signch; local
53 signch = ( num->n_sign == PLUS ? 0 : 1 ); /* Number of sign chars. */
55 str = zend_string_alloc(num->n_len + num->n_scale + signch + 1, 0);
57 str = zend_string_alloc(num->n_len + signch, 0);
62 if (signch) *sptr++ = '-';

Completed in 9 milliseconds