Home
last modified time | relevance | path

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

/php-src/ext/standard/
H A Dformatted_print.c380 char *temppos = *format; in php_sprintf_get_argnum() local
381 while (isdigit((int) *temppos)) temppos++; in php_sprintf_get_argnum()
382 if (*temppos != '$') { in php_sprintf_get_argnum()
429 char *temppos, padding; in php_formatted_print() local
443 temppos = memchr(format, '%', format_len); in php_formatted_print()
444 if (!temppos) { in php_formatted_print()
447 } else if (temppos != format) { in php_formatted_print()
448 php_sprintf_appendchars(&result, &outpos, format, temppos - format); in php_formatted_print()
449 format_len -= temppos - format; in php_formatted_print()
450 format = temppos; in php_formatted_print()

Completed in 10 milliseconds