Home
last modified time | relevance | path

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

/PHP-7.4/ext/standard/
H A Dformatted_print.c398 char *format, *temppos, padding; in php_formatted_print() local
417 temppos = memchr(format, '%', format_len); in php_formatted_print()
418 if (!temppos) { in php_formatted_print()
421 } else if (temppos != format) { in php_formatted_print()
422 php_sprintf_appendchars(&result, &outpos, format, temppos - format); in php_formatted_print()
423 format_len -= temppos - format; in php_formatted_print()
424 format = temppos; in php_formatted_print()
448 temppos = format; in php_formatted_print()
449 while (isdigit((int)*temppos)) temppos++; in php_formatted_print()
450 if (*temppos == '$') { in php_formatted_print()

Completed in 5 milliseconds