Home
last modified time | relevance | path

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

/php-src/ext/standard/
H A Dmail.c251 char *to_r, *subject_r; in PHP_FUNCTION() local
276 to_r = estrndup(to, to_len); in PHP_FUNCTION()
278 if (!isspace((unsigned char) to_r[to_len - 1])) { in PHP_FUNCTION()
281 to_r[to_len - 1] = '\0'; in PHP_FUNCTION()
283 for (i = 0; to_r[i]; i++) { in PHP_FUNCTION()
284 if (iscntrl((unsigned char) to_r[i])) { in PHP_FUNCTION()
289 SKIP_LONG_HEADER_SEP(to_r, i); in PHP_FUNCTION()
290 to_r[i] = ' '; in PHP_FUNCTION()
294 to_r = to; in PHP_FUNCTION()
334 if (to_r != to) { in PHP_FUNCTION()
[all …]
/php-src/ext/mbstring/
H A Dmbstring.c4437 char *to_r = NULL; in PHP_FUNCTION() local
4548 to_r = estrndup(to, to_len); in PHP_FUNCTION()
4553 to_r[to_len - 1] = '\0'; in PHP_FUNCTION()
4555 for (i = 0; to_r[i]; i++) { in PHP_FUNCTION()
4556 if (iscntrl((unsigned char) to_r[i])) { in PHP_FUNCTION()
4560 if (to_r[i] == '\r' && to_r[i + 1] == '\n' && (to_r[i + 2] == ' ' || to_r[i + 2] == '\t')) { in PHP_FUNCTION()
4562 while (to_r[i + 1] == ' ' || to_r[i + 1] == '\t') { in PHP_FUNCTION()
4568 to_r[i] = ' '; in PHP_FUNCTION()
4572 to_r = to; in PHP_FUNCTION()
4667 if (to_r != to) { in PHP_FUNCTION()
[all …]

Completed in 33 milliseconds