Home
last modified time | relevance | path

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

/PHP-8.2/ext/imap/
H A Dphp_imap.c3707 zend_long charset_token, encoding_token, end_token, end, offset=0, i; in PHP_FUNCTION() local
3723 charset_token -= (zend_long)string; in PHP_FUNCTION()
3724 if (offset != charset_token) { /* Is there anything before the encoded data? */ in PHP_FUNCTION()
3726 memcpy(text, &string[offset], charset_token-offset); in PHP_FUNCTION()
3727 text[charset_token - offset] = 0x00; in PHP_FUNCTION()
3733 …if ((encoding_token = (zend_long)php_memnstr(&string[charset_token+2], "?", 1, string+end))) { /*… in PHP_FUNCTION()
3737 …memcpy(charset, &string[charset_token + 2], encoding_token - (charset_token + 2)); /* Extract char… in PHP_FUNCTION()
3738 charset[encoding_token-(charset_token + 2)] = 0x00; in PHP_FUNCTION()
3777 charset_token = offset; in PHP_FUNCTION()
3781 …memcpy(text, &string[charset_token], end - charset_token); /* Extract unencoded text from string */ in PHP_FUNCTION()
[all …]

Completed in 18 milliseconds