亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频

? 歡迎來到蟲蟲下載站! | ?? 資源下載 ?? 資源專輯 ?? 關(guān)于我們
? 蟲蟲下載站

?? encoding.c

?? SIP(Session Initiation Protocol)是由IETF定義
?? C
?? 第 1 頁(yè) / 共 2 頁(yè)
字號(hào):
/* * encoding.c : implements the encoding conversion functions needed for XML * * Related specs:  * rfc2044        (UTF-8 and UTF-16) F. Yergeau Alis Technologies * [ISO-10646]    UTF-8 and UTF-16 in Annexes * [ISO-8859-1]   ISO Latin-1 characters codes. * [UNICODE]      The Unicode Consortium, "The Unicode Standard -- *                Worldwide Character Encoding -- Version 1.0", Addison- *                Wesley, Volume 1, 1991, Volume 2, 1992.  UTF-8 is *                described in Unicode Technical Report #4. * [US-ASCII]     Coded Character Set--7-bit American Standard Code for *                Information Interchange, ANSI X3.4-1986. * * Original code for IsoLatin1 and UTF-16 by "Martin J. Duerst" <duerst@w3.org> * * See Copyright for the status of this software. * * Daniel.Veillard@w3.org */#include "global.h"#ifdef WIN32#include "win32config.h"#else#include "config.h"#endif#include <stdio.h>#include <string.h>#ifdef HAVE_CTYPE_H#include <ctype.h>#endif#ifdef HAVE_STDLIB_H#include <stdlib.h>#endif#include <libxml/encoding.h>#include <libxml/xmlmemory.h>xmlCharEncodingHandlerPtr xmlUTF16LEHandler = NULL;xmlCharEncodingHandlerPtr xmlUTF16BEHandler = NULL;/* * From rfc2044: encoding of the Unicode values on UTF-8: * * UCS-4 range (hex.)           UTF-8 octet sequence (binary) * 0000 0000-0000 007F   0xxxxxxx * 0000 0080-0000 07FF   110xxxxx 10xxxxxx * 0000 0800-0000 FFFF   1110xxxx 10xxxxxx 10xxxxxx  * * I hope we won't use values > 0xFFFF anytime soon ! *//** * xmlCheckUTF8: Check utf-8 string for legality. * @utf: Pointer to putative utf-8 encoded string. * * Checks @utf for being valid utf-8. @utf is assumed to be * null-terminated. This function is not super-strict, as it will * allow longer utf-8 sequences than necessary. Note that Java is * capable of producing these sequences if provoked. Also note, this * routine checks for the 4-byte maxiumum size, but does not check for * 0x10ffff maximum value. * * Return value: true if @utf is valid. **/intxmlCheckUTF8(const unsigned char *utf){    int ix;    unsigned char c;    for (ix = 0; (c = utf[ix]);) {        if (c & 0x80) {	    if ((utf[ix + 1] & 0xc0) != 0x80)	        return(0);	    if ((c & 0xe0) == 0xe0) {	        if ((utf[ix + 2] & 0xc0) != 0x80)		    return(0);	        if ((c & 0xf0) == 0xf0) {		    if ((c & 0xf8) != 0xf0 || (utf[ix + 3] & 0xc0) != 0x80)		        return(0);		    ix += 4;		    /* 4-byte code */	        } else		  /* 3-byte code */		    ix += 3;	    } else	      /* 2-byte code */	        ix += 2;	} else	    /* 1-byte code */	    ix++;      }      return(1);}/** * isolat1ToUTF8: * @out:  a pointer to an array of bytes to store the result * @outlen:  the length of @out * @in:  a pointer to an array of ISO Latin 1 chars * @inlen:  the length of @in * * Take a block of ISO Latin 1 chars in and try to convert it to an UTF-8 * block of chars out. * Returns the number of byte written, or -1 by lack of space. */intisolat1ToUTF8(unsigned char* out, int outlen,              const unsigned char* in, int *inlen) {    unsigned char* outstart= out;    unsigned char* outend= out+outlen;    const unsigned char* inend= in+*inlen;    unsigned char c;    while (in < inend) {        c= *in++;        if (c < 0x80) {            if (out >= outend)  return(-1);            *out++ = c;        }        else {            if (out >= outend)  return(-1);            *out++ = 0xC0 | (c >> 6);            if (out >= outend)  return(-1);            *out++ = 0x80 | (0x3F & c);        }    }    return(out-outstart);}/** * UTF8Toisolat1: * @out:  a pointer to an array of bytes to store the result * @outlen:  the length of @out * @in:  a pointer to an array of UTF-8 chars * @inlen:  the length of @in * * Take a block of UTF-8 chars in and try to convert it to an ISO Latin 1 * block of chars out. * TODO: UTF8Toisolat1 need a fallback mechanism ... * * Returns the number of byte written, or -1 by lack of space, or -2 *     if the transcoding fails (for *in is not valid utf8 string or *     the result of transformation can't fit into the encoding we want) * The value of @inlen after return is the number of octets consumed *     as the return value is positive, else unpredictiable. */intUTF8Toisolat1(unsigned char* out, int outlen,              const unsigned char* in, int *inlen) {    unsigned char* outstart= out;    unsigned char* outend= out+outlen;    const unsigned char* inend= in+*inlen;    unsigned char c;    while (in < inend) {        c= *in++;        if (c < 0x80) {            if (out >= outend)  return(-1);            *out++= c;        }	else if (in == inend) {            *inlen -= 1;            break;	}	else if (((c & 0xFC) == 0xC0) && ((*in & 0xC0) == 0x80)) {	    /* a two byte utf-8 and can be encoding as isolate1 */            *out++= ((c & 0x03) << 6) | (*in++ & 0x3F);	}	else	    return(-2);	/* TODO : some should be represent as "&#x____;" */    }    return(out-outstart);}/** * UTF16LEToUTF8: * @out:  a pointer to an array of bytes to store the result * @outlen:  the length of @out * @inb:  a pointer to an array of UTF-16LE passwd as a byte array * @inlenb:  the length of @in in UTF-16LE chars * * Take a block of UTF-16LE ushorts in and try to convert it to an UTF-8 * block of chars out. This function assume the endian properity * is the same between the native type of this machine and the * inputed one. * * Returns the number of byte written, or -1 by lack of space, or -2 *     if the transcoding fails (for *in is not valid utf16 string) *     The value of *inlen after return is the number of octets consumed *     as the return value is positive, else unpredictiable. */intUTF16LEToUTF8(unsigned char* out, int outlen,            const unsigned char* inb, int *inlenb){    unsigned char* outstart= out;    unsigned char* outend= out+outlen;    unsigned short* in = (unsigned short*) inb;    unsigned short* inend;    unsigned int c, d, inlen;    unsigned char *tmp;    int bits;    if ((*inlenb % 2) == 1)        (*inlenb)--;    inlen = *inlenb / 2;    inend= in + inlen;    while (in < inend) {#ifdef BIG_ENDIAN	tmp = (unsigned char *) in;	c = *tmp++;	c = c | (((unsigned int)*tmp) << 8);	in++;#else /* BIG_ENDIAN */        c= *in++;#endif /* BIG_ENDIAN */        if ((c & 0xFC00) == 0xD800) {    /* surrogates */            if (in >= inend) {           /* (in > inend) shouldn't happens */                (*inlenb) -= 2;                break;            }#ifdef BIG_ENDIAN            tmp = (unsigned char *) in;            d = *tmp++;	    d = d | (((unsigned int)*tmp) << 8);	    in++;#else /* BIG_ENDIAN */            d = *in++;#endif /* BIG_ENDIAN */            if ((d & 0xFC00) == 0xDC00) {                c &= 0x03FF;                c <<= 10;                c |= d & 0x03FF;                c += 0x10000;            }            else	        return(-2);        }	/* assertion: c is a single UTF-4 value */        if (out >= outend)	    return(-1);        if      (c <    0x80) {  *out++=  c;                bits= -6; }        else if (c <   0x800) {  *out++= ((c >>  6) & 0x1F) | 0xC0;  bits=  0; }        else if (c < 0x10000) {  *out++= ((c >> 12) & 0x0F) | 0xE0;  bits=  6; }        else                  {  *out++= ((c >> 18) & 0x07) | 0xF0;  bits= 12; }         for ( ; bits >= 0; bits-= 6) {            if (out >= outend)	        return(-1);            *out++= ((c >> bits) & 0x3F) | 0x80;        }    }    return(out-outstart);}/** * UTF8ToUTF16LE: * @outb:  a pointer to an array of bytes to store the result * @outlen:  the length of @outb * @in:  a pointer to an array of UTF-8 chars * @inlen:  the length of @in * * Take a block of UTF-8 chars in and try to convert it to an UTF-16LE * block of chars out. * TODO: UTF8ToUTF16LE need a fallback mechanism ... * * Returns the number of byte written, or -1 by lack of space, or -2 *     if the transcoding failed.  */intUTF8ToUTF16LE(unsigned char* outb, int outlen,            const unsigned char* in, int *inlen){    unsigned short* out = (unsigned short*) outb;    unsigned short* outstart= out;    unsigned short* outend;    const unsigned char* inend= in+*inlen;    unsigned int c, d, trailing;#ifdef BIG_ENDIAN    unsigned char *tmp;    unsigned short tmp1, tmp2;#endif /* BIG_ENDIAN */    outlen /= 2; /* convert in short length */    outend = out + outlen;    while (in < inend) {      d= *in++;      if      (d < 0x80)  { c= d; trailing= 0; }      else if (d < 0xC0)          return(-2);    /* trailing byte in leading position */      else if (d < 0xE0)  { c= d & 0x1F; trailing= 1; }      else if (d < 0xF0)  { c= d & 0x0F; trailing= 2; }      else if (d < 0xF8)  { c= d & 0x07; trailing= 3; }      else          return(-2);    /* no chance for this in UTF-16 */      if (inend - in < trailing) {          *inlen -= (inend - in);          break;      }       for ( ; trailing; trailing--) {          if ((in >= inend) || (((d= *in++) & 0xC0) != 0x80))	      return(-1);          c <<= 6;          c |= d & 0x3F;      }      /* assertion: c is a single UTF-4 value */        if (c < 0x10000) {            if (out >= outend)	        return(-1);#ifdef BIG_ENDIAN            tmp = (unsigned char *) out;            *tmp = c ;            *(tmp + 1) = c >> 8 ;            out++;#else /* BIG_ENDIAN */            *out++ = c;#endif /* BIG_ENDIAN */        }        else if (c < 0x110000) {            if (out+1 >= outend)	        return(-1);            c -= 0x10000;#ifdef BIG_ENDIAN            tmp1 = 0xD800 | (c >> 10);            tmp = (unsigned char *) out;            *tmp = tmp1;            *(tmp + 1) = tmp1 >> 8;            out++;            tmp2 = 0xDC00 | (c & 0x03FF);            tmp = (unsigned char *) out;            *tmp  = tmp2;            *(tmp + 1) = tmp2 >> 8;            out++;#else /* BIG_ENDIAN */            *out++ = 0xD800 | (c >> 10);            *out++ = 0xDC00 | (c & 0x03FF);#endif /* BIG_ENDIAN */        }        else	    return(-1);    }    return(out-outstart);}/** * UTF16BEToUTF8: * @out:  a pointer to an array of bytes to store the result * @outlen:  the length of @out * @inb:  a pointer to an array of UTF-16 passwd as a byte array * @inlenb:  the length of @in in UTF-16 chars * * Take a block of UTF-16 ushorts in and try to convert it to an UTF-8 * block of chars out. This function assume the endian properity * is the same between the native type of this machine and the * inputed one. * * Returns the number of byte written, or -1 by lack of space, or -2 *     if the transcoding fails (for *in is not valid utf16 string) * The value of *inlen after return is the number of octets consumed *     as the return value is positive, else unpredictiable. */intUTF16BEToUTF8(unsigned char* out, int outlen,            const unsigned char* inb, int *inlenb){    unsigned char* outstart= out;    unsigned char* outend= out+outlen;    unsigned short* in = (unsigned short*) inb;    unsigned short* inend;    unsigned int c, d, inlen;#ifdef BIG_ENDIAN#else /* BIG_ENDIAN */    unsigned char *tmp;#endif /* BIG_ENDIAN */        int bits;    if ((*inlenb % 2) == 1)        (*inlenb)--;    inlen = *inlenb / 2;    inend= in + inlen;    while (in < inend) {#ifdef BIG_ENDIAN            c= *in++;#else        tmp = (unsigned char *) in;	c = *tmp++;	c = c << 8;	c = c | (unsigned int) *tmp;	in++;#endif	        if ((c & 0xFC00) == 0xD800) {    /* surrogates */	    if (in >= inend) {           /* (in > inend) shouldn't happens */	        (*inlenb) -= 2;		break;	    }#ifdef BIG_ENDIAN            d= *in++;#else            tmp = (unsigned char *) in;	    d = *tmp++;	    d = d << 8;	    d = d | (unsigned int) *tmp;	    in++;#endif	                if ((d & 0xFC00) == 0xDC00) {                c &= 0x03FF;                c <<= 10;                c |= d & 0x03FF;                c += 0x10000;            }            else 	        return(-2);        }	/* assertion: c is a single UTF-4 value */        if (out >= outend) 	    return(-1);        if      (c <    0x80) {  *out++=  c;                bits= -6; }        else if (c <   0x800) {  *out++= ((c >>  6) & 0x1F) | 0xC0;  bits=  0; }        else if (c < 0x10000) {  *out++= ((c >> 12) & 0x0F) | 0xE0;  bits=  6; }        else                  {  *out++= ((c >> 18) & 0x07) | 0xF0;  bits= 12; }         for ( ; bits >= 0; bits-= 6) {            if (out >= outend) 	        return(-1);            *out++= ((c >> bits) & 0x3F) | 0x80;        }    }    return(out-outstart);}

?? 快捷鍵說明

復(fù)制代碼 Ctrl + C
搜索代碼 Ctrl + F
全屏模式 F11
切換主題 Ctrl + Shift + D
顯示快捷鍵 ?
增大字號(hào) Ctrl + =
減小字號(hào) Ctrl + -
亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频
久久综合色鬼综合色| 人禽交欧美网站| 中文av一区二区| 久久久久成人黄色影片| 久久久久久免费网| 日本一区二区三区久久久久久久久不| 精品1区2区在线观看| 久久免费午夜影院| 日本一区二区三区高清不卡| 国产精品三级电影| 中文字幕视频一区二区三区久| 国产精品乱人伦中文| 亚洲情趣在线观看| 午夜精品久久久久久久久久久| 亚洲成a人片在线不卡一二三区| 五月天欧美精品| 蜜桃久久久久久久| 国产中文字幕一区| 成人av在线网| 欧美性xxxxxxxx| 91精品国产乱| 2020日本不卡一区二区视频| 国产精品色呦呦| 亚洲精品视频在线看| 亚洲 欧美综合在线网络| 久久se精品一区二区| 国产成人av一区二区| 北岛玲一区二区三区四区| 在线观看亚洲a| 日韩小视频在线观看专区| 久久先锋影音av| 亚洲三级理论片| 日本不卡视频在线观看| 国产超碰在线一区| 欧美午夜片在线观看| 欧美成人r级一区二区三区| 国产精品沙发午睡系列990531| 亚洲永久免费视频| 国产真实乱子伦精品视频| 99热精品国产| 日韩美女在线视频| 最新高清无码专区| 免费不卡在线视频| 99re这里只有精品视频首页| 在线电影国产精品| 国产精品久久久久久久久免费相片| 亚洲一区二区三区精品在线| 看片的网站亚洲| 色94色欧美sute亚洲线路二| 日韩欧美一区二区不卡| 亚洲欧洲成人自拍| 麻豆freexxxx性91精品| 99免费精品视频| 精品国产网站在线观看| 夜夜精品浪潮av一区二区三区| 久久国产三级精品| 欧美自拍偷拍一区| 欧美国产精品一区| 日本成人在线不卡视频| 99久久国产免费看| 2021国产精品久久精品| 亚洲国产精品久久久男人的天堂 | 91麻豆福利精品推荐| 欧美日韩精品免费| 亚洲欧美偷拍三级| 国产一区视频网站| 3d动漫精品啪啪一区二区竹菊| 中文字幕在线观看不卡视频| 奇米精品一区二区三区在线观看| av不卡在线播放| 久久久久久99久久久精品网站| 香蕉加勒比综合久久| 91无套直看片红桃| 中文一区二区完整视频在线观看 | 91视频你懂的| 国产亚洲美州欧州综合国| 奇米亚洲午夜久久精品| 91国产免费看| 亚洲精品水蜜桃| 成人app在线| 久久久精品黄色| 韩国女主播成人在线观看| 91 com成人网| 亚洲大型综合色站| 一本到高清视频免费精品| 中文一区二区在线观看| 国产麻豆一精品一av一免费| 欧美一区二区精品久久911| 五月天婷婷综合| 欧洲亚洲精品在线| 亚洲伊人色欲综合网| 91免费国产视频网站| ...中文天堂在线一区| 国产成人久久精品77777最新版本| 日韩一区二区三| 日本最新不卡在线| 日韩一级二级三级精品视频| 首页综合国产亚洲丝袜| 欧美日韩国产另类一区| 天天亚洲美女在线视频| 欧美精品一卡二卡| 日本亚洲一区二区| 欧美一级欧美三级| 蜜臀国产一区二区三区在线播放| 3d成人h动漫网站入口| 三级欧美韩日大片在线看| 欧美一二三四在线| 久久 天天综合| 久久久久久久久久美女| 成人视屏免费看| 亚洲欧美偷拍三级| 欧美日韩一区二区三区免费看| 午夜视频一区在线观看| 日韩一区二区不卡| 国内精品国产成人国产三级粉色 | 日韩一区二区三区在线观看| 毛片不卡一区二区| 2020日本不卡一区二区视频| 国产不卡在线一区| 亚洲精品美国一| 这里只有精品电影| 国产美女在线观看一区| 国产精品欧美久久久久一区二区| 色婷婷综合久久久中文一区二区 | 狠狠色丁香婷综合久久| 欧美激情在线一区二区三区| 91最新地址在线播放| 亚洲国产裸拍裸体视频在线观看乱了| 这里只有精品免费| 国产福利电影一区二区三区| 成人免费在线播放视频| 欧美日韩国产天堂| 国产麻豆91精品| 亚洲精品写真福利| 日韩精品中文字幕在线一区| 成人久久18免费网站麻豆| 亚洲成人av在线电影| 精品国产乱码久久久久久老虎| 成人av资源网站| 免费精品视频在线| 国产精品成人免费| 欧美伦理影视网| 国产精品1区2区3区在线观看| 亚洲天堂免费在线观看视频| 91精品国产综合久久精品app| 国产黑丝在线一区二区三区| 亚洲综合在线电影| 久久久噜噜噜久久中文字幕色伊伊 | 狠狠色狠狠色综合日日91app| 国产精品不卡在线| 日韩一区国产二区欧美三区| 成人黄色a**站在线观看| 视频精品一区二区| 中文字幕在线免费不卡| 日韩欧美国产成人一区二区| 99久久99久久免费精品蜜臀| 日本午夜一本久久久综合| 欧美国产精品一区| 日韩午夜激情免费电影| 色一情一伦一子一伦一区| 久久国产婷婷国产香蕉| 亚洲综合在线观看视频| 国产欧美va欧美不卡在线| 欧美理论在线播放| 91免费看`日韩一区二区| 国产一二三精品| 婷婷国产在线综合| 综合激情网...| 国产日韩精品久久久| 在线观看91精品国产麻豆| 色婷婷综合激情| 国产成人在线电影| 麻豆国产精品777777在线| 亚洲影视资源网| 亚洲少妇30p| 久久久精品免费网站| 日韩欧美一二三| 欧美日本精品一区二区三区| 91亚洲精品乱码久久久久久蜜桃 | 99re热这里只有精品视频| 激情综合网天天干| 日韩一区精品字幕| 亚洲国产成人av| 亚洲一区电影777| 亚洲天堂中文字幕| 国产精品色在线| 国产亚洲精品超碰| 久久综合九色综合97婷婷女人| 欧美高清视频不卡网| 欧洲一区二区三区免费视频| 91蜜桃网址入口| 粉嫩欧美一区二区三区高清影视| 麻豆91免费观看| 奇米在线7777在线精品| 日韩精品一二三四| 日日噜噜夜夜狠狠视频欧美人| 一区二区三区91| 亚洲一区二区av电影| 亚洲与欧洲av电影| 亚洲国产日韩综合久久精品|