C语言查找替换字符

日期:2016-06-14 21:11:49 人气:1

C语言查找替换字符

 #include  #include  #include  #include  void Substitute(char *pInput, char *pOutput, char *pSrc, char *pDst)  {  char *pi, *po, *p;  int nSrcLen, nDstLen, nLen;  // 指向输入字符串的游动指针.  pi = pInput;  // 指向输出字符串的游动指针.  po = pOutput;  /
    A+
热门评论