远程实时监控系统 int gsmEncode7bit(const char* pSrc, unsigned char* pDst, int nSrcLength) { …… //初始化 // 将源串每8个字节分为一组,压缩成7个字节循环该处理过程,直至源串被处理完。如果分组不到8字节,也能正确处理 while (nSrc < nSrcLength) { nChar = nSrc & 7; // 取源字符串的计数值的最低3位 if(nChar == 0) // 处理源串的每个字节 { nLeft = *pSrc; // 组内
暂无评论