乱码大全(四)[3]

[入库:2006年2月23日] [更新:2007年3月24日]

本文简介:

 {first=sour>>4;

  second=sour&15;

  if(first>9) first+=55;

  else first+=48;

  if(second>9) second+=55;

  else second+=48;

  printf("%c%c%c",'=',first,second);

 }

}

 

/*QP解码*/

void uqp(unsigned char sour,unsigned char first,unsigned char second)

/*

  sour:解码后的字符

  first:QP码的第一个字符

   second:QP码的第二个字符

  sour为返回值

*/

{

 if(first>=65) first-=55;

本文关键:Quoted-Printable
  相关方案
Google
 

本站最佳浏览方式为 分辨率 1024x768 IE 6.0(或更高版本的 IE浏览器)

go top