Home
last modified time | relevance | path

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

/PHP-7.4/sapi/phpdbg/
H A Dphpdbg_out.c904 char *tmp, *tmpptr; in phpdbg_encode_ctrl_chars() local
908 tmp = tmpptr = emalloc(*buflen * 5); in phpdbg_encode_ctrl_chars()
912 *tmpptr++ = '&'; in phpdbg_encode_ctrl_chars()
913 *tmpptr++ = '#'; in phpdbg_encode_ctrl_chars()
915 *tmpptr++ = ((*buf)[i] / 10) + '0'; in phpdbg_encode_ctrl_chars()
917 *tmpptr++ = ((*buf)[i] % 10) + '0'; in phpdbg_encode_ctrl_chars()
918 *tmpptr++ = ';'; in phpdbg_encode_ctrl_chars()
920 *tmpptr++ = (*buf)[i]; in phpdbg_encode_ctrl_chars()
924 len = tmpptr - tmp; in phpdbg_encode_ctrl_chars()

Completed in 7 milliseconds