08-18-2012، 09:26 PM
درود
تابع بالا از تابع زیر هم استفاده میکنه :
در واقع تابع UrlUnescapeInPlace function کار زیر رو انجام میده :
Converts escape sequences back into ordinary characters and overwrites the original string.
توضیحات بیشتر :
http://msdn.microsoft.com/en-us/library/...s.85).aspx
:-)
تابع بالا از تابع زیر هم استفاده میکنه :
کد:
bool unescape_char(const char* hexstr, int chars, char* pwc)
{
char res = 0;
char wc;
int i;
for (i=0; i<chars; i++)
{
res <<= 4;
wc = *hexstr++;
if (wc >= '0' && wc <= '9')
res |= (wc - '0');
else if (wc >= 'a' && wc <= 'f')
res |= (wc - 'a' + 10);
else if (wc >= 'A' && wc <= 'F')
res |= (wc - 'a' + 10);
else
return false;
}
*pwc = res;
return true;
Converts escape sequences back into ordinary characters and overwrites the original string.
توضیحات بیشتر :
http://msdn.microsoft.com/en-us/library/...s.85).aspx
:-)
گروه دور همی پارسی کدرز
https://t.me/joinchat/GxVRww3ykLynHFsdCvb7eg
https://t.me/joinchat/GxVRww3ykLynHFsdCvb7eg